Class RevokeRoleConstantAction

java.lang.Object
org.apache.derby.impl.sql.execute.DDLConstantAction
org.apache.derby.impl.sql.execute.RevokeRoleConstantAction
All Implemented Interfaces:
ConstantAction

class RevokeRoleConstantAction extends DDLConstantAction
This class performs actions that are ALWAYS performed for a REVOKE role statement at execution time.
  • Field Details

    • roleNames

      private List roleNames
    • grantees

      private List grantees
    • withAdminOption

      private final boolean withAdminOption
      See Also:
  • Constructor Details

    • RevokeRoleConstantAction

      public RevokeRoleConstantAction(List roleNames, List grantees)
      Make the ConstantAction for a CREATE ROLE statement. When executed, will create a role by the given name.
      Parameters:
      roleNames - List of the name of the role names being revoked
      grantees - List of the authorization ids granted to role
  • Method Details