Class SecretValue
- java.lang.Object
-
- io.jenkins.plugins.credentials.secretsmanager.factory.SecretValue
-
- All Implemented Interfaces:
Serializable
public abstract class SecretValue extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
SecretValue.Matcher<R>
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SecretValue
binary(byte[] bytes)
abstract <R> R
match(SecretValue.Matcher<R> matcher)
static SecretValue
string(String string)
-
-
-
Method Detail
-
string
public static SecretValue string(String string)
-
binary
public static SecretValue binary(byte[] bytes)
-
match
public abstract <R> R match(SecretValue.Matcher<R> matcher)
-
-