Skip to content

Commit e2d42bc

Browse files
authored
Update HttpSecurity.MD
1 parent b7005ad commit e2d42bc

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

HttpSecurity.MD

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,40 @@
44
55
# authorizeRequests()
66

7-
>> Process with HttpServletRequest
7+
>> with HttpServletRequest
8+
9+
# authenticated()
10+
11+
>> Pass Only Authenticated User
12+
13+
# fullyAuthenticated()
14+
15+
>> Pass Only Fully Authenticated User
16+
17+
# anonymous()
18+
19+
>> Anyone can requests
20+
21+
# hasRole(role)
22+
23+
>> Pass When Has Specify Role
24+
25+
# hasAnyRole()
26+
27+
>> Pass When Has Any Role
28+
29+
# hasIpAddress(ip)
30+
31+
>> Pass When Specify IP Address
32+
33+
# not()
34+
35+
>> NOT
36+
37+
# permitAll()
38+
39+
>> Accept All Permitted Users
40+
41+
# denyAll()
42+
43+
>> Deny All Users

0 commit comments

Comments
 (0)