Class GenericPrivilegeInfo
- java.lang.Object
-
- org.apache.derby.impl.sql.execute.PrivilegeInfo
-
- org.apache.derby.impl.sql.execute.GenericPrivilegeInfo
-
public class GenericPrivilegeInfo extends PrivilegeInfo
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
_privilege
private boolean
_restrict
private PrivilegedSQLObject
_tupleDescriptor
-
Constructor Summary
Constructors Constructor Description GenericPrivilegeInfo(PrivilegedSQLObject tupleDescriptor, java.lang.String privilege, boolean restrict)
Construct from the object which is protected by privileges.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
executeGrantRevoke(Activation activation, boolean grant, java.util.List grantees)
This is the guts of the Execution-time logic for GRANT/REVOKE generic privileges.-
Methods inherited from class org.apache.derby.impl.sql.execute.PrivilegeInfo
addWarningIfPrivilegeNotRevoked, checkOwnership
-
-
-
-
Field Detail
-
_tupleDescriptor
private PrivilegedSQLObject _tupleDescriptor
-
_privilege
private java.lang.String _privilege
-
_restrict
private boolean _restrict
-
-
Constructor Detail
-
GenericPrivilegeInfo
public GenericPrivilegeInfo(PrivilegedSQLObject tupleDescriptor, java.lang.String privilege, boolean restrict)
Construct from the object which is protected by privileges.- Parameters:
tupleDescriptor
- The object which is being protectedprivilege
- Kind of privilege (e.g., PermDescriptor.USAGE_PRIV)restrict
- True if this is a REVOKE RESTRICT action
-
-
Method Detail
-
executeGrantRevoke
public void executeGrantRevoke(Activation activation, boolean grant, java.util.List grantees) throws StandardException
This is the guts of the Execution-time logic for GRANT/REVOKE generic privileges.- Specified by:
executeGrantRevoke
in classPrivilegeInfo
- Parameters:
activation
-grant
- true if grant, false if revokegrantees
- a list of authorization ids (strings)- Throws:
StandardException
- Thrown on failure
-
-