ConfigurationProperty Class

  • java.lang.Object
    • system.fabric.description.ConfigurationProperty

public class ConfigurationProperty

Specifies a name-value pair that is used to configure a service or application.

Method Summary

Modifier and Type Method and Description
String getName()

Specifies the name of the setting.

String getValue()

Gets the value of the setting.

boolean isEncrypted()

Specifies whether the configuration is encrypted.

boolean isMustOverride()

Gets a flag indicating whether the setting must be overridden in the application manifest.

Method Details

getName

public String getName()

Specifies the name of the setting.

Returns:

The name of the setting.

getValue

public String getValue()

Gets the value of the setting.

Returns:

The value of the setting.

isEncrypted

public boolean isEncrypted()

Specifies whether the configuration is encrypted.

Returns:

Returns true if the configuration is encrypted; false, otherwise.

isMustOverride

public boolean isMustOverride()

Gets a flag indicating whether the setting must be overridden in the application manifest.

Returns:

Flag indicating whether the setting must be overridden in the application manifest.

Applies to