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

Part Number E27170-01

weblogic.management.configuration
Interface GenericJDBCStoreMBean

All Superinterfaces:
ConfigurationMBean, DescriptorBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, SettableBean, WebLogicMBean
All Known Subinterfaces:
JDBCStoreMBean, JMSJDBCStoreMBean, TransactionLogJDBCStoreMBean

public interface GenericJDBCStoreMBean
extends ConfigurationMBean

This MBean defines the parameters for the JDBC store. It is the parent of the JDBCStoreMBean and the deprecated JMSJDBCStoreMBean.


Field Summary
 
Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY
 
Method Summary
 String getCreateTableDDLFile()
          Specifies the DDL (Data Definition Language) file to use for creating the JDBC store's backing table.
 String getPrefixName()
          The prefix for the JDBC store's database table (WLStore), in the following format: [[[catalog.]schema.]prefix].
 void setCreateTableDDLFile(String name)
          Sets the value of the CreateTableDDLFile attribute.
 void setPrefixName(String name)
          Sets the value of PrefixName attribute.
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 
Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
 

Method Detail

getPrefixName

String getPrefixName()

The prefix for the JDBC store's database table (WLStore), in the following format: [[[catalog.]schema.]prefix].

Each period symbol in the [[catalog.]schema.]prefix format is significant, where schema generally corresponds to username in many databases. When no prefix is specified, the JDBC store table name is simply WLStore and the database implicitly determines the schema according to the JDBC connection's user. As a best practice, you should always configure a prefix for the JDBC WLStore table name.

For specific guidelines about using JDBC store prefixes, refer to the "Using the WebLogic Store" section of Designing and Configuring WebLogic Server Environments".

Returns:
The prefixName value

setPrefixName

void setPrefixName(String name)
                   throws InvalidAttributeValueException

Sets the value of PrefixName attribute.

Parameters:
name - The new prefixName value
Throws:
InvalidAttributeValueException
See Also:
GenericJDBCStoreMBean.getPrefixName()
Default Value:
null

getCreateTableDDLFile

String getCreateTableDDLFile()

Specifies the DDL (Data Definition Language) file to use for creating the JDBC store's backing table.

Default Value:
null

setCreateTableDDLFile

void setCreateTableDDLFile(String name)
                           throws InvalidAttributeValueException

Sets the value of the CreateTableDDLFile attribute.

Throws:
InvalidAttributeValueException
See Also:
GenericJDBCStoreMBean.setCreateTableDDLFile(java.lang.String)

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