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.
- Since:
- 3.0.0
- Author:
- CloudForgeCI
-
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
-
hashCode
-
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
-
alb
-
efs
-