Record Class CAI1Error
java.lang.Object
java.lang.Record
com.io7m.cardant.protocol.inventory.cb.CAI1Error
- Record Components:
fieldErrorCode- The error code.fieldMessage- The error message.fieldAttributes- The error attributes.fieldRemediatingAction- The remediating action, if any.
- All Implemented Interfaces:
com.io7m.cedarbridge.runtime.api.CBSerializableType
public record CAI1Error(com.io7m.cedarbridge.runtime.api.CBString fieldErrorCode, com.io7m.cedarbridge.runtime.api.CBString fieldMessage, com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString,com.io7m.cedarbridge.runtime.api.CBString> fieldAttributes, com.io7m.cedarbridge.runtime.api.CBOptionType<com.io7m.cedarbridge.runtime.api.CBString> fieldRemediatingAction)
extends Record
implements com.io7m.cedarbridge.runtime.api.CBSerializableType
An error response.
-
Constructor Summary
ConstructorsConstructorDescriptionCAI1Error(com.io7m.cedarbridge.runtime.api.CBString fieldErrorCode, com.io7m.cedarbridge.runtime.api.CBString fieldMessage, com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString, com.io7m.cedarbridge.runtime.api.CBString> fieldAttributes, com.io7m.cedarbridge.runtime.api.CBOptionType<com.io7m.cedarbridge.runtime.api.CBString> fieldRemediatingAction) Creates an instance of aCAI1Errorrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic CAI1Errordeserialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context) Deserialize a value of type CAI1Error.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 thefieldAttributesrecord component.com.io7m.cedarbridge.runtime.api.CBStringReturns the value of thefieldErrorCoderecord component.com.io7m.cedarbridge.runtime.api.CBStringReturns the value of thefieldMessagerecord component.com.io7m.cedarbridge.runtime.api.CBOptionType<com.io7m.cedarbridge.runtime.api.CBString> Returns the value of thefieldRemediatingActionrecord component.final inthashCode()Returns a hash code value for this object.static voidSerialize a value of type CAI1Error.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CAI1Error
public CAI1Error(com.io7m.cedarbridge.runtime.api.CBString fieldErrorCode, com.io7m.cedarbridge.runtime.api.CBString fieldMessage, com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString, com.io7m.cedarbridge.runtime.api.CBString> fieldAttributes, com.io7m.cedarbridge.runtime.api.CBOptionType<com.io7m.cedarbridge.runtime.api.CBString> fieldRemediatingAction) Creates an instance of aCAI1Errorrecord class.- Parameters:
fieldErrorCode- the value for thefieldErrorCoderecord componentfieldMessage- the value for thefieldMessagerecord componentfieldAttributes- the value for thefieldAttributesrecord componentfieldRemediatingAction- the value for thefieldRemediatingActionrecord component
-
-
Method Details
-
serialize
public static void serialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context, CAI1Error $x) throws IOException Serialize a value of type CAI1Error.- Parameters:
$context- The serialization context.$x- The value to be serialized.- Throws:
IOException
-
deserialize
public static CAI1Error deserialize(com.io7m.cedarbridge.runtime.api.CBSerializationContextType $context) throws IOException Deserialize a value of type CAI1Error.- Parameters:
$context- The serialization context.- Returns:
- A value of type CAI1Error.
- 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). -
fieldErrorCode
public com.io7m.cedarbridge.runtime.api.CBString fieldErrorCode()Returns the value of thefieldErrorCoderecord component.- Returns:
- the value of the
fieldErrorCoderecord component
-
fieldMessage
public com.io7m.cedarbridge.runtime.api.CBString fieldMessage()Returns the value of thefieldMessagerecord component.- Returns:
- the value of the
fieldMessagerecord component
-
fieldAttributes
public com.io7m.cedarbridge.runtime.api.CBMap<com.io7m.cedarbridge.runtime.api.CBString,com.io7m.cedarbridge.runtime.api.CBString> fieldAttributes()Returns the value of thefieldAttributesrecord component.- Returns:
- the value of the
fieldAttributesrecord component
-
fieldRemediatingAction
public com.io7m.cedarbridge.runtime.api.CBOptionType<com.io7m.cedarbridge.runtime.api.CBString> fieldRemediatingAction()Returns the value of thefieldRemediatingActionrecord component.- Returns:
- the value of the
fieldRemediatingActionrecord component
-