Package io.micronaut.maven.jib
Record Class JibConfiguration.ToConfiguration
java.lang.Object
java.lang.Record
io.micronaut.maven.jib.JibConfiguration.ToConfiguration
- Record Components:
- image- The image.
- - The tags.
- auth- The authentication configuration.
- Enclosing class:
- JibConfiguration
public static record JibConfiguration.ToConfiguration(Optional<String> image, Set<String> tags, Optional<JibConfiguration.AuthConfiguration> auth)
extends Record
Represents the to configuration.
- 
Constructor SummaryConstructorsConstructorDescriptionToConfiguration(Optional<String> image, Set<String> tags, Optional<JibConfiguration.AuthConfiguration> auth) Creates an instance of aToConfigurationrecord class.
- 
Method SummaryModifier 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.tags()Returns the value of thetagsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
ToConfigurationpublic ToConfiguration(Optional<String> image, Set<String> tags, Optional<JibConfiguration.AuthConfiguration> auth) Creates an instance of aToConfigurationrecord class.
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodeReturns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates 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).
- 
imageReturns the value of theimagerecord component.- Returns:
- the value of the imagerecord component
 
- 
tagsReturns the value of thetagsrecord component.- Returns:
- the value of the tagsrecord component
 
- 
authReturns the value of theauthrecord component.- Returns:
- the value of the authrecord component
 
 
-