Record Class CAI1AuditEvent
java.lang.Object
java.lang.Record
com.io7m.cardant.protocol.inventory.cb.CAI1AuditEvent
- Record Components:
fieldId- The event ID.fieldTime- The event time.fieldOwner- The event owner.fieldType- The event type.fieldData- The event data.
- All Implemented Interfaces:
com.io7m.cedarbridge.runtime.api.CBSerializableType
public record CAI1AuditEvent(com.io7m.cedarbridge.runtime.api.CBIntegerUnsigned64 fieldId, com.io7m.cedarbridge.runtime.time.CBOffsetDateTime fieldTime, com.io7m.cedarbridge.runtime.api.CBUUID fieldOwner, com.io7m.cedarbridge.runtime.api.CBString fieldType, com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString,com.io7m.cedarbridge.runtime.api.CBString> fieldData)
extends Record
implements com.io7m.cedarbridge.runtime.api.CBSerializableType
An audit event.
-
Constructor Summary
ConstructorsConstructorDescriptionCAI1AuditEvent(com.io7m.cedarbridge.runtime.api.CBIntegerUnsigned64 fieldId, com.io7m.cedarbridge.runtime.time.CBOffsetDateTime fieldTime, com.io7m.cedarbridge.runtime.api.CBUUID fieldOwner, com.io7m.cedarbridge.runtime.api.CBString fieldType, com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString, com.io7m.cedarbridge.runtime.api.CBString> fieldData) Creates an instance of aCAI1AuditEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic CAI1AuditEventdeserialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context) Deserialize a value of type CAI1AuditEvent.final booleanIndicates whether some other object is "equal to" this one.com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString, com.io7m.cedarbridge.runtime.api.CBString> Returns the value of thefieldDatarecord component.com.io7m.cedarbridge.runtime.api.CBIntegerUnsigned64fieldId()Returns the value of thefieldIdrecord component.com.io7m.cedarbridge.runtime.api.CBUUIDReturns the value of thefieldOwnerrecord component.com.io7m.cedarbridge.runtime.time.CBOffsetDateTimeReturns the value of thefieldTimerecord component.com.io7m.cedarbridge.runtime.api.CBStringReturns the value of thefieldTyperecord component.final inthashCode()Returns a hash code value for this object.static voidserialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context, CAI1AuditEvent $x) Serialize a value of type CAI1AuditEvent.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CAI1AuditEvent
public CAI1AuditEvent(com.io7m.cedarbridge.runtime.api.CBIntegerUnsigned64 fieldId, com.io7m.cedarbridge.runtime.time.CBOffsetDateTime fieldTime, com.io7m.cedarbridge.runtime.api.CBUUID fieldOwner, com.io7m.cedarbridge.runtime.api.CBString fieldType, com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString, com.io7m.cedarbridge.runtime.api.CBString> fieldData) Creates an instance of aCAI1AuditEventrecord class.- Parameters:
fieldId- the value for thefieldIdrecord componentfieldTime- the value for thefieldTimerecord componentfieldOwner- the value for thefieldOwnerrecord componentfieldType- the value for thefieldTyperecord componentfieldData- the value for thefieldDatarecord component
-
-
Method Details
-
serialize
public static void serialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context, CAI1AuditEvent $x) throws IOException Serialize a value of type CAI1AuditEvent.- Parameters:
$context- The serialization context.$x- The value to be serialized.- Throws:
IOException
-
deserialize
public static CAI1AuditEvent deserialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context) throws IOException Deserialize a value of type CAI1AuditEvent.- Parameters:
$context- The serialization context.- Returns:
- A value of type CAI1AuditEvent.
- Throws:
IOException
-
toString
Returns 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. -
hashCode
public 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. -
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). -
fieldId
public com.io7m.cedarbridge.runtime.api.CBIntegerUnsigned64 fieldId()Returns the value of thefieldIdrecord component.- Returns:
- the value of the
fieldIdrecord component
-
fieldTime
public com.io7m.cedarbridge.runtime.time.CBOffsetDateTime fieldTime()Returns the value of thefieldTimerecord component.- Returns:
- the value of the
fieldTimerecord component
-
fieldOwner
public com.io7m.cedarbridge.runtime.api.CBUUID fieldOwner()Returns the value of thefieldOwnerrecord component.- Returns:
- the value of the
fieldOwnerrecord component
-
fieldType
public com.io7m.cedarbridge.runtime.api.CBString fieldType()Returns the value of thefieldTyperecord component.- Returns:
- the value of the
fieldTyperecord component
-
fieldData
public com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString,com.io7m.cedarbridge.runtime.api.CBString> fieldData()Returns the value of thefieldDatarecord component.- Returns:
- the value of the
fieldDatarecord component
-