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 password
- storePath- The store path
public record IdTLSStoreConfiguration(String storeType, String storeProvider, String storePassword, Path storePath)
extends Record
Configuration information for a key/trust store.
- 
Constructor SummaryConstructorsConstructorDescriptionIdTLSStoreConfiguration(String storeType, String storeProvider, String storePassword, Path storePath) Configuration information for a key/trust store.
- 
Method SummaryModifier 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- 
IdTLSStoreConfigurationpublic 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 password
- storePath- The store path
 
 
- 
- 
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.
- 
hashCodepublic 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.
- 
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).
- 
storeTypeReturns the value of thestoreTyperecord component.- Returns:
- the value of the storeTyperecord component
 
- 
storeProviderReturns the value of thestoreProviderrecord component.- Returns:
- the value of the storeProviderrecord component
 
- 
storePasswordReturns the value of thestorePasswordrecord component.- Returns:
- the value of the storePasswordrecord component
 
- 
storePathReturns the value of thestorePathrecord component.- Returns:
- the value of the storePathrecord component
 
 
-