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 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"


Method Summary
abstract  String getDatasourceType()
          The data source type.
abstract  long getId()
          Gets the Id value
abstract  JDBCConnectionPoolParamsBean getJDBCConnectionPoolParams()
          Gets the connection pool parameters of this data source
abstract  JDBCDataSourceParamsBean getJDBCDataSourceParams()
          Gets the basic usage parameters of this data source
abstract  JDBCDriverParamsBean getJDBCDriverParams()
          Gets the driver parameters of this data source
abstract  JDBCOracleParamsBean getJDBCOracleParams()
          Gets the Oracle-related parameters of this data source
abstract  JDBCXAParamsBean getJDBCXAParams()
          Gets the XA-related parameters of this data source
abstract  String getName()
          A unique name that identifies this data source in the WebLogic domain.
abstract  String getVersion()
          Gets the "version" attribute
abstract  void setDatasourceType(String type)
          Determines the data source type.
abstract  void setName(String name)
           
abstract  void setVersion(String version)
          Sets the "version" attribute

 

Method Detail

getName

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

setName

void setName(String name)

getDatasourceType

String getDatasourceType()
The data source type. Valid types are:

setDatasourceType

void setDatasourceType(String type)
Determines the data source type. GENERIC - generic data source MDS - multi data source AGL - Active GridLink data source UCP - Universal Connection Pool data source PROXY - proxy for multiple tenant data sources If not set: 1. AGL if active-gridlink is set to true or FAN enabled is set to true or ONS is configured. 2. MDS if there is one or more entries in data-source-list 3. Otherwise, GENERIC

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()
Gets the Id value
Returns:
The id value

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