Record Class IdACommandAdminPermissionGrant
java.lang.Object
java.lang.Record
com.io7m.idstore.protocol.admin.IdACommandAdminPermissionGrant
- Record Components:
admin- The admin IDpermission- The permission
- All Implemented Interfaces:
com.io7m.hibiscus.api.HBMessageType, IdACommandType<IdAResponseAdminUpdate>, IdAMessageType, IdProtocolMessageType
public record IdACommandAdminPermissionGrant(UUID admin, IdAdminPermission permission)
extends Record
implements IdACommandType<IdAResponseAdminUpdate>
Grant a permission to the given admin.
-
Constructor Summary
ConstructorsConstructorDescriptionIdACommandAdminPermissionGrant(UUID admin, IdAdminPermission permission) Grant a permission to the given admin. -
Method Summary
Modifier 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
-
IdACommandAdminPermissionGrant
Grant a permission to the given admin.
-
-
Method Details
-
responseClass
- Specified by:
responseClassin interfaceIdACommandType<IdAResponseAdminUpdate>- Returns:
- The response type associated with this command
-
toString
-
hashCode
-
equals
Indicates 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). -
admin
-
permission
Returns the value of thepermissionrecord component.- Returns:
- the value of the
permissionrecord component
-