Package com.io7m.idstore.tls
Record Class IdTLSStoreConfiguration
java.lang.Object
java.lang.Record
com.io7m.idstore.tls.IdTLSStoreConfiguration
- Record Components:
storeType- The store type (such as "JKS" or "CANONMILL")storeProvider- The store provider (such as "SUN" or "CANONMILL")storePassword- The store passwordstorePath- The store path
public record IdTLSStoreConfiguration(String storeType, String storeProvider, String storePassword, Path storePath)
extends Record
Configuration information for a key/trust store.
-
Constructor Summary
ConstructorsConstructorDescriptionIdTLSStoreConfiguration(String storeType, String storeProvider, String storePassword, Path storePath) Configuration information for a key/trust store. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thestorePasswordrecord component.Returns the value of thestorePathrecord component.Returns the value of thestoreProviderrecord component.Returns the value of thestoreTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdTLSStoreConfiguration
public IdTLSStoreConfiguration(String storeType, String storeProvider, String storePassword, Path storePath) Configuration information for a key/trust store.- Parameters:
storeType- The store type (such as "JKS" or "CANONMILL")storeProvider- The store provider (such as "SUN" or "CANONMILL")storePassword- The store passwordstorePath- The store path
-
-
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). -
storeType
Returns the value of thestoreTyperecord component.- Returns:
- the value of the
storeTyperecord component
-
storeProvider
Returns the value of thestoreProviderrecord component.- Returns:
- the value of the
storeProviderrecord component
-
storePassword
Returns the value of thestorePasswordrecord component.- Returns:
- the value of the
storePasswordrecord component
-
storePath
Returns the value of thestorePathrecord component.- Returns:
- the value of the
storePathrecord component
-