SettableBean
, WLDFBean
, WLDFConfigurationPropertyBean
public interface WLDFEncryptedPropertyBean extends WLDFConfigurationPropertyBean
Represents an encrypted configuration property
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getEncryptedValue() |
Returns the decrypted value of the property.
|
byte[] |
getEncryptedValueEncrypted() |
Get the encrypted bytes of the
Value attribute |
java.lang.String getEncryptedValue()
Returns the decrypted value of the property.
When you get the value of this attribute, WebLogic Server does the following:
ValueEncrypted
attribute.When you set the value of this attribute, WebLogic Server does the following:
ValueEncrypted
attribute to the
encrypted value.Using this attribute is a potential security risk because the String object (which contains the unencrypted password) remains in the JVM's memory until garbage collection removes it and the memory is reallocated. Depending on how memory is allocated in the JVM, a significant amount of time could pass before this unencrypted data is removed from memory.
byte[] getEncryptedValueEncrypted()
Get the encrypted bytes of the Value
attribute