Record Class PriintBpmVersionInfo

java.lang.Object
java.lang.Record
com.priint.pubserverapi.infra.priintbpm.PriintBpmVersionInfo
Record Components:
priintBpmName - official name of priint-bpm application
priintBpmVersion - version of the priint-bpm app used
bpmsName - name of the embedded BPMS engine used by priint-bpm
bpmsVersion - version of the embedded BPMS engine

public record PriintBpmVersionInfo(String priintBpmName, String priintBpmVersion, String bpmsName, String bpmsVersion) extends Record
This record describes the priint-bpm version Pubserver works with. It also lists the internal BPMS engine version used.
  • Constructor Details

    • PriintBpmVersionInfo

      public PriintBpmVersionInfo(String priintBpmName, String priintBpmVersion, String bpmsName, String bpmsVersion)
      Creates an instance of a PriintBpmVersionInfo record class.
      Parameters:
      priintBpmName - the value for the priintBpmName record component
      priintBpmVersion - the value for the priintBpmVersion record component
      bpmsName - the value for the bpmsName record component
      bpmsVersion - the value for the bpmsVersion 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.
    • priintBpmName

      public String priintBpmName()
      Returns the value of the priintBpmName record component.
      Returns:
      the value of the priintBpmName record component
    • priintBpmVersion

      public String priintBpmVersion()
      Returns the value of the priintBpmVersion record component.
      Returns:
      the value of the priintBpmVersion record component
    • bpmsName

      public String bpmsName()
      Returns the value of the bpmsName record component.
      Returns:
      the value of the bpmsName record component
    • bpmsVersion

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