© 2001 BEA Systems, Inc.


com.bea.p13n.mbeans
Interface JdbcHelperMBean


public interface JdbcHelperMBean
extends ServiceConfigurationMBean

JdbcHelper configuration management bean interface.


Field Summary
static int INFINITE_RETRY
          Special value indicating infinate retries
static long INFINITE_WAIT
          Special value indicating infinate wait time
 
Method Summary
 java.lang.String getJdbcHelperDelegate()
          Gets the fully-qualified class name representing the database-specific class that JdbcHelper will delegate to regarding getting/setting CLOBS/BLOBS.
 int getMaxRetries()
          Get the maximum allowed number of retries for obtaining a database connection.
 long getMaxWaitTime()
          Gets the maximum allowed time to wait for an available database connection in milliseconds.
 void setJdbcHelperDelegate(java.lang.String className)
          Sets the fully-qualified class name representing the database-specific class that JdbcHelper will delegate to regarding getting/setting CLOBS/BLOBS.
 void setMaxRetries(int newMaxRetries)
          Sets the value for maximum allowed number of retries for obtaining a database connection.
 void setMaxWaitTime(long newMaxWaitTime)
          Sets the value for maximum allowed time to wait for an available database connection.
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
getAttributeStringValue, getNotes, getSetFields, getXml, isPersistenceEnabled, setNotes, setPersistenceEnabled
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, 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
 

Field Detail

INFINITE_RETRY

public static final int INFINITE_RETRY
Special value indicating infinate retries

INFINITE_WAIT

public static final long INFINITE_WAIT
Special value indicating infinate wait time
Method Detail

getMaxRetries

public int getMaxRetries()
Get the maximum allowed number of retries for obtaining a database connection. Default is infinity.

Default Value: INFINITE_RETRY

setMaxRetries

public void setMaxRetries(int newMaxRetries)
Sets the value for maximum allowed number of retries for obtaining a database connection.

Legal Value: (value >= 0) || (value == self.INFINITE_RETRY)

getMaxWaitTime

public long getMaxWaitTime()
Gets the maximum allowed time to wait for an available database connection in milliseconds. Default is infinity.

Default Value: INFINITE_WAIT

setMaxWaitTime

public void setMaxWaitTime(long newMaxWaitTime)
Sets the value for maximum allowed time to wait for an available database connection.

Legal Value: (value >= 0) || (value == self.INFINITE_WAIT)

getJdbcHelperDelegate

public java.lang.String getJdbcHelperDelegate()
Gets the fully-qualified class name representing the database-specific class that JdbcHelper will delegate to regarding getting/setting CLOBS/BLOBS.

Default Value: null

setJdbcHelperDelegate

public void setJdbcHelperDelegate(java.lang.String className)
Sets the fully-qualified class name representing the database-specific class that JdbcHelper will delegate to regarding getting/setting CLOBS/BLOBS.

Parameters:
className -  

© 2001 BEA Systems, Inc.

Copyright © 2001 BEA Systems, Inc. All Rights Reserved