Package com.io7m.idstore.protocol.admin
Record Class IdACommandAdminPermissionRevoke
java.lang.Object
java.lang.Record
com.io7m.idstore.protocol.admin.IdACommandAdminPermissionRevoke
- Record Components:
- admin- The admin ID
- permission- The permission
- All Implemented Interfaces:
- com.io7m.hibiscus.api.HBMessageType,- IdACommandType<IdAResponseAdminUpdate>,- IdAMessageType,- IdProtocolMessageType
public record IdACommandAdminPermissionRevoke(UUID admin, IdAdminPermission permission)
extends Record
implements IdACommandType<IdAResponseAdminUpdate>
Revoke a permission from the given admin.
- 
Constructor SummaryConstructorsConstructorDescriptionIdACommandAdminPermissionRevoke(UUID admin, IdAdminPermission permission) Revoke a permission from the given admin.
- 
Method SummaryModifier and TypeMethodDescriptionadmin()Returns the value of theadminrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thepermissionrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
IdACommandAdminPermissionRevokeRevoke a permission from the given admin.
 
- 
- 
Method Details- 
responseClass- Specified by:
- responseClassin interface- IdACommandType<IdAResponseAdminUpdate>
- Returns:
- The response type associated with this command
 
- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object).
- 
adminReturns the value of theadminrecord component.- Returns:
- the value of the adminrecord component
 
- 
permissionReturns the value of thepermissionrecord component.- Returns:
- the value of the permissionrecord component
 
 
-