|
© 2003 BEA Systems, Inc. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.bea.content.manager.RepositoryConfig
Represents the configuration of a content repository. Each Repository may have specific properties that are necessary in order to be properly configured. Please see the specific repositories documentation for configuration information.
****************WARNING****************
When getting binaries from the BEA Repository (including both a binary Node Property and also a binary PropertyChoice) the default is to return the InputStream as a ByteArrayInputStream, thus consuming server memory until the bytes are released. If you application will be reading in very large files, you may switch to streaming mode. This means that the InputStream returned may read directly from a database resource, depending on the database or driver. This is accomplished by creating a property on the RepositoryConfig called "STREAMING_ENABLED" with the value set to "true". To disable streaming you must remove the "STREAMING_ENABLED" property entirely. Switching to streaming mode must be done with caution as it places additional requirements on developers using the api. The issue is that the InputStream through a BLOB, may be attached to a database connection (or other transactional resource). The use of this stream must therefore be within the context of a transaction to ensure that it is isolated from uses by other threads, etc. If you don't begin a UserTransaction before calling this method and then either commit or rollback the tx after you close the InputStream, the connection may go back into the WLS connection Pool and will be reused by another thread. This will lead to deadlocking the server. All of the BEA code that uses the api (tags, servlets, portlets and admin tools) are all protected through the use of a transaction. For those that are calling the API directly, here is an example of wrapping the call in a tx with exception handling left out
try { Context initCtx = new InitialContext(); tx = (UserTransaction)initCtx.lookup( "java:comp/UserTransaction" ); tx.setTransactionTimeout( transactionTimeout ); tx.begin(); bytes = nodeOps.getPropertyBytes(nodeId, propertyId); // empty the bytes } finally { // make sure to close InputStream if ( bytes != null ) { bytes.close(); } if ( tx != null ) { switch ( tx.getStatus() ) { case Status.STATUS_ACTIVE: tx.commit(); break; case Status.STATUS_MARKED_ROLLBACK: tx.rollback(); break; default: // this is bad - an unexpected status // throw exception break; } } }
Field Summary | |
static boolean |
DEFAULT_BINARY_CACHE_IS_ENABLED
|
static int |
DEFAULT_BINARY_CACHE_MAX_ENTRIES
|
static long |
DEFAULT_BINARY_CACHE_MAX_ENTRY_SIZE
|
static long |
DEFAULT_BINARY_CACHE_TTL
|
static String |
DEFAULT_CLASS_NAME
|
static boolean |
DEFAULT_NODE_CACHE_IS_ENABLED
|
static int |
DEFAULT_NODE_CACHE_MAX_ENTRIES
|
static long |
DEFAULT_NODE_CACHE_TTL
|
static String |
DEFAULT_NODE_OPS_HOME
|
static String |
DEFAULT_OBJECT_CLASS_OPS_HOME
|
static boolean |
DEFAULT_READ_ONLY
|
static String |
DEFAULT_SEARCH_OPS_HOME
|
Constructor Summary | |
RepositoryConfig(String name)
Constructs an instance with just name using the defined DEFAULTS for other attributes. |
|
RepositoryConfig(String name,
String className,
Properties properties)
Constructs an instance with just name, className and properties using the defined DEFAULTS for other attributes. |
|
RepositoryConfig(String name,
String className,
Properties properties,
String userName,
String password,
boolean readOnly,
int nodeCacheMaxEntries,
long nodeCacheTtl,
boolean nodeCacheIsEnabled,
int binaryCacheMaxEntries,
long binaryCacheMaxEntrySize,
long binaryCacheTtl,
boolean binaryCacheIsEnabled)
Constructs an instance using with all attributes. |
Method Summary | |
boolean |
getBinaryCacheIsEnabled()
Gets the active state for the binary cache of a repository. |
int |
getBinaryCacheMaxEntries()
Gets the max entries for the binary cache of a repository. |
long |
getBinaryCacheMaxEntrySize()
Gets the max size for the binary cache of a repository. |
long |
getBinaryCacheTtl()
Gets the time-to-live for entries in a binary cache of a repository. |
String |
getClassName()
The class that implements com.bea.content.repostiory.Repository. |
String |
getName()
The name of the Repository. |
boolean |
getNodeCacheIsEnabled()
Gets the active state for the node cache of a repository. |
int |
getNodeCacheMaxEntries()
Gets the max entries for the node cache of a repository. |
long |
getNodeCacheTtl()
Gets the time-to-live for entries in a node cache of a repository. |
String |
getPassword()
Gets the password for the repository. |
Properties |
getProperties()
Gets the configuration properties for the repository. |
boolean |
getReadOnly()
Gets the read-only attribute for the repository. |
String |
getUserName()
Gets the username for the repository. |
String |
toString()
Gets attributes as String. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final String DEFAULT_CLASS_NAME
public static final String DEFAULT_NODE_OPS_HOME
public static final String DEFAULT_OBJECT_CLASS_OPS_HOME
public static final String DEFAULT_SEARCH_OPS_HOME
public static final boolean DEFAULT_READ_ONLY
public static final int DEFAULT_NODE_CACHE_MAX_ENTRIES
public static final long DEFAULT_NODE_CACHE_TTL
public static final boolean DEFAULT_NODE_CACHE_IS_ENABLED
public static final int DEFAULT_BINARY_CACHE_MAX_ENTRIES
public static final long DEFAULT_BINARY_CACHE_MAX_ENTRY_SIZE
public static final long DEFAULT_BINARY_CACHE_TTL
public static final boolean DEFAULT_BINARY_CACHE_IS_ENABLED
Constructor Detail |
public RepositoryConfig(String name)
public RepositoryConfig(String name, String className, Properties properties)
public RepositoryConfig(String name, String className, Properties properties, String userName, String password, boolean readOnly, int nodeCacheMaxEntries, long nodeCacheTtl, boolean nodeCacheIsEnabled, int binaryCacheMaxEntries, long binaryCacheMaxEntrySize, long binaryCacheTtl, boolean binaryCacheIsEnabled)
Method Detail |
public String getName()
public String getClassName()
public Properties getProperties()
public String getUserName()
public String getPassword()
public boolean getReadOnly()
public int getNodeCacheMaxEntries()
public long getNodeCacheTtl()
public boolean getNodeCacheIsEnabled()
public int getBinaryCacheMaxEntries()
public long getBinaryCacheMaxEntrySize()
public long getBinaryCacheTtl()
public boolean getBinaryCacheIsEnabled()
public String toString()
toString
in class Object
|
© 2003 BEA Systems, Inc. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |