OSecurityUser - allow()
Determines whether the user is allowed to access the given resource.
Checking Access
OrientDB defines resources and the user or role's access to the resource defined using ORule
instances. Using this method, you can determine whether the user is allowed to access the given resource.
Syntax
boolean OSecurityUser().allow(
ORule.ResourceGeneric resourceGeneric,
String resourceSpecific,
int operation)
Argument | Type | Description |
---|---|---|
resourceGeneric |
ORule.ResourceGeneric |
Defines the generic resource |
resourceSpecific |
String |
Defines the specific resource |
operation |
int |
Defines the operation you want to check |
Return Value
This method returns a boolean
instance. A value of true
indicates that the role does have permission to operate on the resource.