Record Class StackPortSpec

java.lang.Object
java.lang.Record
com.cloudforge.core.local.StackPortSpec

public record StackPortSpec(DeploymentTarget target, String containerName, String conflictingContainerName, String emulatorContainerName, String image, int hostPort, int containerPort, String displayName) extends Record
Metadata for a target-owned StackPort resource browser container.
  • Constructor Details

    • StackPortSpec

      public StackPortSpec(DeploymentTarget target, String containerName, String conflictingContainerName, String emulatorContainerName, String image, int hostPort, int containerPort, String displayName)
      Creates an instance of a StackPortSpec record class.
      Parameters:
      target - the value for the target record component
      containerName - the value for the containerName record component
      conflictingContainerName - the value for the conflictingContainerName record component
      emulatorContainerName - the value for the emulatorContainerName record component
      image - the value for the image record component
      hostPort - the value for the hostPort record component
      containerPort - the value for the containerPort record component
      displayName - the value for the displayName record component
  • Method Details

    • ministack

      public static StackPortSpec ministack()
    • localstack

      public static StackPortSpec localstack()
    • forTarget

      public static StackPortSpec forTarget(DeploymentTarget target)
    • browserUrl

      public URI browserUrl()
    • emulatorEndpointUrl

      public String emulatorEndpointUrl()
    • endpointConfigName

      public String endpointConfigName()
      Named StackPort endpoint key (used in STACKPORT_ENDPOINTS).
    • stackPortEndpointsEnvValue

      public String stackPortEndpointsEnvValue()
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      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.
    • target

      public DeploymentTarget target()
      Returns the value of the target record component.
      Returns:
      the value of the target record component
    • containerName

      public String containerName()
      Returns the value of the containerName record component.
      Returns:
      the value of the containerName record component
    • conflictingContainerName

      public String conflictingContainerName()
      Returns the value of the conflictingContainerName record component.
      Returns:
      the value of the conflictingContainerName record component
    • emulatorContainerName

      public String emulatorContainerName()
      Returns the value of the emulatorContainerName record component.
      Returns:
      the value of the emulatorContainerName record component
    • image

      public String image()
      Returns the value of the image record component.
      Returns:
      the value of the image record component
    • hostPort

      public int hostPort()
      Returns the value of the hostPort record component.
      Returns:
      the value of the hostPort record component
    • containerPort

      public int containerPort()
      Returns the value of the containerPort record component.
      Returns:
      the value of the containerPort record component
    • displayName

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