Record Class ATSTransformRequest
java.lang.Object
java.lang.Record
org.alfresco.hxi_connector.live_ingester.adapters.messaging.transform.request.model.ATSTransformRequest
- All Implemented Interfaces:
Serializable
public record ATSTransformRequest(String requestId, String nodeRef, String targetMediaType, ClientData clientData, Map<String,String> transformOptions, String replyQueue)
extends Record
implements Serializable
Model used for Transform Request Events.
This is a mirror of org.alfresco.repo.rendition2.TransformRequest in Alfresco Repository project.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionATSTransformRequest(String requestId, String nodeRef, String targetMediaType, ClientData clientData, Map<String, String> transformOptions, String replyQueue) Creates an instance of aATSTransformRequestrecord class.ATSTransformRequest(String nodeRef, String targetMediaType, ClientData clientData, Map<String, String> transformOptions, String replyQueue) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclientDatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.nodeRef()Returns the value of thenodeRefrecord component.Returns the value of thereplyQueuerecord component.Returns the value of therequestIdrecord component.Returns the value of thetargetMediaTyperecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thetransformOptionsrecord component.
-
Constructor Details
-
ATSTransformRequest
-
ATSTransformRequest
public ATSTransformRequest(String requestId, String nodeRef, String targetMediaType, ClientData clientData, Map<String, String> transformOptions, String replyQueue) Creates an instance of aATSTransformRequestrecord class.- Parameters:
requestId- the value for therequestIdrecord componentnodeRef- the value for thenodeRefrecord componenttargetMediaType- the value for thetargetMediaTyperecord componentclientData- the value for theclientDatarecord componenttransformOptions- the value for thetransformOptionsrecord componentreplyQueue- the value for thereplyQueuerecord component
-
-
Method Details
-
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). -
requestId
Returns the value of therequestIdrecord component.- Returns:
- the value of the
requestIdrecord component
-
nodeRef
Returns the value of thenodeRefrecord component.- Returns:
- the value of the
nodeRefrecord component
-
targetMediaType
Returns the value of thetargetMediaTyperecord component.- Returns:
- the value of the
targetMediaTyperecord component
-
clientData
Returns the value of theclientDatarecord component.- Returns:
- the value of the
clientDatarecord component
-
transformOptions
Returns the value of thetransformOptionsrecord component.- Returns:
- the value of the
transformOptionsrecord component
-
replyQueue
Returns the value of thereplyQueuerecord component.- Returns:
- the value of the
replyQueuerecord component
-