Skip navigation links

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

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.j2ee.descriptor.wl
Interface JDBCPropertyBean

All Superinterfaces:
SettableBean

public interface JDBCPropertyBean
extends SettableBean

Represents a specific JDBC property.


Method Summary
abstract  String getEncryptedValue()
          The plaintext value of the encrypted property value.
abstract  byte[] getEncryptedValueEncrypted()
          The encrypted value is stored in the descriptor file.
abstract  String getName()
          The name of the property.
abstract  String getSysPropValue()
          The value of the property defined as a system property.
abstract  String getValue()
          The value of the property.
abstract  void setEncryptedValue(String value)
           
abstract  void setEncryptedValueEncrypted(byte[] encryptedValue)
           
abstract  void setName(String name)
           
abstract  void setSysPropValue(String sysPropValue)
           
abstract  void setValue(String value)
           

 

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

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

setEncryptedValueEncrypted

void setEncryptedValueEncrypted(byte[] encryptedValue)

Skip navigation links

Copyright 1996, 2015, 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.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09