Record Class StConfiguration.TLSStore
java.lang.Object
java.lang.Record
com.io7m.stonesignal.server.StConfiguration.TLSStore
-
Constructor Summary
Constructors -
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
-
TLSStore
public TLSStore(@JsonPropertyDescription("The store type.") String storeType, @JsonPropertyDescription("The store provider.") String storeProvider, @JsonPropertyDescription("The store password.") String storePassword, @JsonPropertyDescription("The store path.") Path storePath) Creates an instance of aTLSStorerecord class.- Parameters:
storeType- the value for thestoreTyperecord componentstoreProvider- the value for thestoreProviderrecord componentstorePassword- the value for thestorePasswordrecord componentstorePath- the value for thestorePathrecord component
-
-
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). -
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
-