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

Part Number E27170-01

weblogic.j2ee.descriptor.wl
Interface JDBCDataSourceBean

All Superinterfaces:
SettableBean

public interface JDBCDataSourceBean
extends SettableBean

The top of the JDBC data source bean tree.

JDBC data sources all have a JDBCDataSourceBean as their root bean (a bean with no parent). The schema namespace that corresponds to this bean is "http://xmlns.oracle.com/weblogic/jdbc-data-source"

Access limited to the following security roles:
Deployer

Method Summary
 long getId()
           
 JDBCPropertiesBean getInternalProperties()
          Internal Use only, applications must not attempt to configure or use this.
 JDBCConnectionPoolParamsBean getJDBCConnectionPoolParams()
          Gets the connection pool parameters of this data source
 JDBCDataSourceParamsBean getJDBCDataSourceParams()
          Gets the basic usage parameters of this data source
 JDBCDriverParamsBean getJDBCDriverParams()
          Gets the driver parameters of this data source
 JDBCOracleParamsBean getJDBCOracleParams()
          Gets the Oracle-related parameters of this data source
 JDBCXAParamsBean getJDBCXAParams()
          Gets the XA-related parameters of this data source
 String getName()
          A unique name that identifies this data source in the WebLogic domain.
 String getVersion()
          Gets the "version" attribute
 void setName(String name)
           
 void setVersion(String version)
          Sets the "version" attribute
 
Methods inherited from interface weblogic.descriptor.SettableBean
isSet, unSet
 

Method Detail

getName

String getName()
A unique name that identifies this data source in the WebLogic domain.


setName

void setName(String name)

getInternalProperties

JDBCPropertiesBean getInternalProperties()
Internal Use only, applications must not attempt to configure or use this.

Changes take effect after you redeploy the module or restart the server.

getJDBCDriverParams

JDBCDriverParamsBean getJDBCDriverParams()
Gets the driver parameters of this data source

Configuration parameters for the JDBC Driver used by this data source are specified using the driver parameters bean.

Returns:
The driver parameters bean associated with this data source

getJDBCConnectionPoolParams

JDBCConnectionPoolParamsBean getJDBCConnectionPoolParams()
Gets the connection pool parameters of this data source

Configuration parameters for this data source's connection pool are specified using the connection pool parameters bean.

Returns:
The connection pool parameters bean associated with this data source

getJDBCDataSourceParams

JDBCDataSourceParamsBean getJDBCDataSourceParams()
Gets the basic usage parameters of this data source

Configuration parameters for the basic usage of this data source are specified using the data source parameters bean.

Returns:
The data source parameters bean associated with this data source

getJDBCXAParams

JDBCXAParamsBean getJDBCXAParams()
Gets the XA-related parameters of this data source

Configuration parameters for this data source's XA-related behavior are specified using the XA parameters bean.

Returns:
The XA parameters bean associated with this data source

getJDBCOracleParams

JDBCOracleParamsBean getJDBCOracleParams()
Gets the Oracle-related parameters of this data source

Configuration parameters for this data source's Oracle-related behavior are specified using the Oracle parameters bean.

Returns:
The Oracle parameters bean associated with this data source

getVersion

String getVersion()
Gets the "version" attribute


setVersion

void setVersion(String version)
Sets the "version" attribute

Parameters:
version -

getId

long getId()
Returns:
The id value

Copyright 1996, 2013, 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.2)

Part Number E27170-01