Class OrAuthorization
- java.lang.Object
-
- io.vertx.rxjava3.ext.auth.authorization.OrAuthorization
-
- All Implemented Interfaces:
Authorization
public class OrAuthorization extends Object implements Authorization
Allows to perform a logical 'or' between several authorizationsNOTE: 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<OrAuthorization>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description OrAuthorization(OrAuthorization delegate)
OrAuthorization(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description OrAuthorization
addAuthorization(Authorization authorization)
static OrAuthorization
create()
boolean
equals(Object o)
List<Authorization>
getAuthorizations()
OrAuthorization
getDelegate()
int
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 OrAuthorization
newInstance(OrAuthorization arg)
JsonObject
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<OrAuthorization> __TYPE_ARG
-
-
Constructor Detail
-
OrAuthorization
public OrAuthorization(OrAuthorization delegate)
-
OrAuthorization
public OrAuthorization(Object delegate)
-
-
Method Detail
-
getDelegate
public OrAuthorization 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 OrAuthorization create()
-
getAuthorizations
public List<Authorization> getAuthorizations()
-
addAuthorization
public OrAuthorization addAuthorization(Authorization authorization)
-
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 OrAuthorization newInstance(OrAuthorization arg)
-
-