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 Details

    • ATSTransformRequest

      public ATSTransformRequest(String nodeRef, String targetMediaType, ClientData clientData, Map<String,String> transformOptions, String replyQueue)
    • ATSTransformRequest

      public ATSTransformRequest(String requestId, String nodeRef, String targetMediaType, ClientData clientData, Map<String,String> transformOptions, String replyQueue)
      Creates an instance of a ATSTransformRequest record class.
      Parameters:
      requestId - the value for the requestId record component
      nodeRef - the value for the nodeRef record component
      targetMediaType - the value for the targetMediaType record component
      clientData - the value for the clientData record component
      transformOptions - the value for the transformOptions record component
      replyQueue - the value for the replyQueue record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • requestId

      public String requestId()
      Returns the value of the requestId record component.
      Returns:
      the value of the requestId record component
    • nodeRef

      public String nodeRef()
      Returns the value of the nodeRef record component.
      Returns:
      the value of the nodeRef record component
    • targetMediaType

      public String targetMediaType()
      Returns the value of the targetMediaType record component.
      Returns:
      the value of the targetMediaType record component
    • clientData

      public ClientData clientData()
      Returns the value of the clientData record component.
      Returns:
      the value of the clientData record component
    • transformOptions

      public Map<String,String> transformOptions()
      Returns the value of the transformOptions record component.
      Returns:
      the value of the transformOptions record component
    • replyQueue

      public String replyQueue()
      Returns the value of the replyQueue record component.
      Returns:
      the value of the replyQueue record component