Package app.ductape.sdk.secrets
Record Class SecretsTypes.SecretResolutionResult<T>
java.lang.Object
java.lang.Record
app.ductape.sdk.secrets.SecretsTypes.SecretResolutionResult<T>
- Enclosing class:
- SecretsTypes
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of thefailedKeysrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theresolvedKeysrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
SecretResolutionResult
Creates an instance of aSecretResolutionResultrecord class.- Parameters:
value- the value for thevaluerecord componentresolvedKeys- the value for theresolvedKeysrecord componentfailedKeys- the value for thefailedKeysrecord component
-
-
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). -
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
resolvedKeys
Returns the value of theresolvedKeysrecord component.- Returns:
- the value of the
resolvedKeysrecord component
-
failedKeys
Returns the value of thefailedKeysrecord component.- Returns:
- the value of the
failedKeysrecord component
-