Package com.cloudforgeci.api.compute
Record Class ApplicationFactory.ApplicationSystem
java.lang.Object
java.lang.Record
com.cloudforgeci.api.compute.ApplicationFactory.ApplicationSystem
- Record Components:
vpc- the VPC factory that created the network infrastructurealb- the ALB factory that created the load balancerefs- the EFS factory that created the shared file system
- Enclosing class:
ApplicationFactory
public static record ApplicationFactory.ApplicationSystem(VpcFactory vpc, AlbFactory alb, EfsFactory efs)
extends Record
Container for application system components created by the factory.
-
Constructor Summary
ConstructorsConstructorDescriptionApplicationSystem(VpcFactory vpc, AlbFactory alb, EfsFactory efs) Creates an instance of aApplicationSystemrecord class. -
Method Summary
Modifier and TypeMethodDescriptionalb()Returns the value of thealbrecord component.efs()Returns the value of theefsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.vpc()Returns the value of thevpcrecord component.
-
Constructor Details
-
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). -
vpc
Returns the value of thevpcrecord component.- Returns:
- the value of the
vpcrecord component
-
alb
Returns the value of thealbrecord component.- Returns:
- the value of the
albrecord component
-
efs
Returns the value of theefsrecord component.- Returns:
- the value of the
efsrecord component
-