Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.j2ee.descriptor.wl
Interface JDBCPropertyBean

All Superinterfaces:
SettableBean

public interface JDBCPropertyBean
extends SettableBean

Represents a specific JDBC property.

Access limited to the following security roles:
Deployer

Method Summary
 String getEncryptedValue()
          The plaintext value of the encrypted property value.
 byte[] getEncryptedValueEncrypted()
          The encrypted value is stored in the descriptor file.
 String getName()
          The name of the property.
 String getSysPropValue()
          The value of the property defined as a system property.
 String getValue()
          The value of the property.
 void setEncryptedValue(String value)
           
 void setEncryptedValueEncrypted(byte[] encryptedValue)
           
 void setName(String name)
           
 void setSysPropValue(String sysPropValue)
           
 void setValue(String value)
           
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

getName

String getName()
The name of the property. The name of each property must be unique in the list of properties.


setName

void setName(String name)

getValue

String getValue()
The value of the property.


setValue

void setValue(String value)

getSysPropValue

String getSysPropValue()
The value of the property defined as a system property.


setSysPropValue

void setSysPropValue(String sysPropValue)

getEncryptedValue

String getEncryptedValue()

The plaintext value of the encrypted property value.

The value is stored in an encrypted form in the descriptor file and when displayed in an administration console.

setEncryptedValue('string') works in online WLST but not offline WLST. Use setEncryptedValueEncrypted(encrypt('string')) for online or offline WLST.

Returns:
The plaintext value of the encrypted property value if available
Access limited to the following security roles:
Deployer

setEncryptedValue

void setEncryptedValue(String value)

getEncryptedValueEncrypted

byte[] getEncryptedValueEncrypted()

The encrypted value is stored in the descriptor file. For example, use setEncryptedValueEncrypted(encrypt('string')) in online or offline WLST.

Returns:
The encrypted value as an encrypted byte array
Access limited to the following security roles:
Deployer

setEncryptedValueEncrypted

void setEncryptedValueEncrypted(byte[] encryptedValue)

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02