Class EncryptedConfigurationEntryResponse
- java.lang.Object
-
- app.nzyme.plugin.rest.configuration.EncryptedConfigurationEntryResponse
-
public abstract class EncryptedConfigurationEntryResponse extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEncryptedConfigurationEntryResponse.Builder
-
Constructor Summary
Constructors Constructor Description EncryptedConfigurationEntryResponse()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static EncryptedConfigurationEntryResponse.Builderbuilder()abstract List<ConfigurationEntryConstraint>constraints()static EncryptedConfigurationEntryResponsecreate(String key, String keyHumanReadable, Boolean valueIsSet, ConfigurationEntryValueType valueType, Boolean requiresRestart, List<ConfigurationEntryConstraint> constraints, String helpTag)abstract StringhelpTag()abstract Stringkey()abstract StringkeyHumanReadable()abstract BooleanrequiresRestart()abstract BooleanvalueIsSet()abstract ConfigurationEntryValueTypevalueType()
-
-
-
Method Detail
-
key
public abstract String key()
-
keyHumanReadable
public abstract String keyHumanReadable()
-
valueType
@Nullable public abstract ConfigurationEntryValueType valueType()
-
requiresRestart
public abstract Boolean requiresRestart()
-
constraints
public abstract List<ConfigurationEntryConstraint> constraints()
-
create
public static EncryptedConfigurationEntryResponse create(String key, String keyHumanReadable, Boolean valueIsSet, ConfigurationEntryValueType valueType, Boolean requiresRestart, List<ConfigurationEntryConstraint> constraints, String helpTag)
-
builder
public static EncryptedConfigurationEntryResponse.Builder builder()
-
-