Record Class JibConfiguration.FromConfiguration
java.lang.Object
java.lang.Record
io.micronaut.maven.jib.JibConfiguration.FromConfiguration
- Record Components:
image- The image.auth- The authentication configuration.
- Enclosing class:
JibConfiguration
public static record JibConfiguration.FromConfiguration(Optional<String> image, Optional<JibConfiguration.AuthConfiguration> auth)
extends Record
Represents the from configuration.
- Since:
- 4.7.0
-
Constructor Summary
ConstructorsConstructorDescriptionFromConfiguration(Optional<String> image, Optional<JibConfiguration.AuthConfiguration> auth) Creates an instance of aFromConfigurationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionauth()Returns the value of theauthrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.image()Returns the value of theimagerecord component.final StringtoString()Returns a string representation of this record class.
-
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). -
image
-
auth
-