Class WildcardPermissionBasedAuthorization
- java.lang.Object
-
- io.vertx.rxjava3.ext.auth.authorization.WildcardPermissionBasedAuthorization
-
- All Implemented Interfaces:
Authorization
public class WildcardPermissionBasedAuthorization extends Object implements Authorization
Represents a wildcard permission (ie: 'manage:order:*' '*:orders', '*', etc.) Note that it can optionally be assigned to a specific resourceNOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<WildcardPermissionBasedAuthorization>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description WildcardPermissionBasedAuthorization(WildcardPermissionBasedAuthorization delegate)
WildcardPermissionBasedAuthorization(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WildcardPermissionBasedAuthorization
create(String permission)
boolean
equals(Object o)
WildcardPermissionBasedAuthorization
getDelegate()
String
getPermission()
return the value of the wildcard permissionString
getResource()
returns an optional resource that the permission is assigned-onint
hashCode()
boolean
match(AuthorizationContext context)
this methods verifies whether or not the authorization match the specified context.boolean
match(User user)
this methods verifies whether or not the authorization match the specified user.static WildcardPermissionBasedAuthorization
newInstance(WildcardPermissionBasedAuthorization arg)
WildcardPermissionBasedAuthorization
setResource(String resource)
sets an optional resource that the permission is assigned-onJsonObject
toJson()
String
toString()
boolean
verify(Authorization authorization)
this method verifies whether or not the authorization implies the specified authorization.
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<WildcardPermissionBasedAuthorization> __TYPE_ARG
-
-
Constructor Detail
-
WildcardPermissionBasedAuthorization
public WildcardPermissionBasedAuthorization(WildcardPermissionBasedAuthorization delegate)
-
WildcardPermissionBasedAuthorization
public WildcardPermissionBasedAuthorization(Object delegate)
-
-
Method Detail
-
getDelegate
public WildcardPermissionBasedAuthorization getDelegate()
- Specified by:
getDelegate
in interfaceAuthorization
-
match
public boolean match(AuthorizationContext context)
this methods verifies whether or not the authorization match the specified context.- Specified by:
match
in interfaceAuthorization
- Parameters:
context
- the context.- Returns:
- true if there's a match.
-
verify
public boolean verify(Authorization authorization)
this method verifies whether or not the authorization implies the specified authorization. Note that it doesn't always mean an exact match. For instance, in the case of aWildcardPermissionBasedAuthorization
, this method may return true even if the permissions are different WildcardPermissionBasedAuthorization.create('*').verify(WildcardPermissionBasedAuthorization.create('anypermission')) would return true- Specified by:
verify
in interfaceAuthorization
- Parameters:
authorization
- the authorization.- Returns:
- true if implies the argument.
-
toJson
public JsonObject toJson()
- Specified by:
toJson
in interfaceAuthorization
-
create
public static WildcardPermissionBasedAuthorization create(String permission)
-
getPermission
public String getPermission()
return the value of the wildcard permission- Returns:
-
getResource
public String getResource()
returns an optional resource that the permission is assigned-on- Returns:
-
setResource
public WildcardPermissionBasedAuthorization setResource(String resource)
sets an optional resource that the permission is assigned-on- Parameters:
resource
-- Returns:
-
match
public boolean match(User user)
this methods verifies whether or not the authorization match the specified user. Internally a basic context is created with the user and the method delegates toAuthorization.match(io.vertx.rxjava3.ext.auth.authorization.AuthorizationContext)
- Parameters:
user
- the user.- Returns:
- true if there's a match
-
newInstance
public static WildcardPermissionBasedAuthorization newInstance(WildcardPermissionBasedAuthorization arg)
-
-