Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


oracle.dss.persistence
Interface PSRConstants

All Superinterfaces:
PersistableConstants

public interface PSRConstants
extends PersistableConstants

Constants for operations that have to do with persistence. This interface contains two inner interfaces:

See Also:
PersistenceManager, PersistenceManagerImpl, InitialPersistenceManager

Inner Class Summary
static interface PSRConstants.Attributes
          Constants for the attributes that are used by the PersistenceManager and StorageManager interfaces.
static interface PSRConstants.Login
          Environment properties for initializing the default implementation of the StorageManager.

 

Inner classes inherited from class oracle.dss.util.persistence.PersistableConstants
PersistableConstants.Attributes

 

Field Summary
static java.lang.String BISESSION
          Environment property: Specifies which user session the PersistenceManager belongs to.
static int DEEP_COPY
          Copy mode: Copy referenced objects.
static java.lang.String ERROR_HANDLER
          Deprecated. as of 2.6.0.22. Use PersistableConstants.PERSISTENCE_ERRORHANDLER.
static java.lang.String INITIAL_PATHNAME
          Environment property: Specifies the initial directory to use when the file based storagemanager is used.
static int NORMAL_COPY
          Copy mode: Do not copy referenced objects.
static java.lang.String SEARCH_CACHE_LIMIT
          Environment property: The limit of sql statements to be cached The value must be a Integer that specifies the number of sql statements to cache.
static java.lang.String STORAGEMANAGER_DRIVER
          The implementation of a StorageManager that the PersistenceManager should use.
static java.lang.String ZIP_FILE
          Environment property: Specifies the name of the zip file (full path name) when the zip file based storagemanager is used.
static java.lang.String ZIP_ROOT_PATH
          Environment property: Specifies the path of the root folder within the zip file when the zip file based storagemanager is used.

 

Fields inherited from interface oracle.dss.util.persistence.PersistableConstants
CALCBUILDER, CALCULATION, CONNECTION, CROSSTAB, DATABASE, DATACACHE, DATAVIEWCACHE, FOLDER, GRAPH, GRAPHSTYLE, METADATAMANAGER, MIME, PERSISTENCE_ERRORHANDLER, PERSISTENCE_LOCALE, QUERY, QUERYBUILDER, QUERYMANAGER, RELATIONALDATACACHE, SELECTION, TABLE, UIFORMAT, UISTYLE, URLSTATE

 

Field Detail

SEARCH_CACHE_LIMIT

public static final java.lang.String SEARCH_CACHE_LIMIT
Environment property: The limit of sql statements to be cached The value must be a Integer that specifies the number of sql statements to cache.

ERROR_HANDLER

public static final java.lang.String ERROR_HANDLER
Deprecated. as of 2.6.0.22. Use PersistableConstants.PERSISTENCE_ERRORHANDLER.
Environment property: The error handler for the PersistenceManager. The value must be a String that identifies the name of the class that implements the ErrorHandler interface.
See Also:
ErrorHandler

NORMAL_COPY

public static final int NORMAL_COPY
Copy mode: Do not copy referenced objects. If you pass this constant as the mode argument to the copy method, then only the object that you specify in the name argument is copied. Any named objects that that object references will not be copied.

For example, suppose you have a dimension list that references a named selection. If you use this copy mode, only the dimension list is copied. The selection that the dimension list references is not copied.

See Also:
DEEP_COPY, BIContext.copy(javax.naming.Name, javax.naming.directory.DirContext, javax.naming.Name, int)

DEEP_COPY

public static final int DEEP_COPY
Copy mode: Copy referenced objects. If you pass this constant as the mode argument to the copy method, then objects that are referenced by the object that you want to copy are also copied.

For example, suppose you have a dimension list that references a named selection. If you use this copy mode, both the dimension list and the selection that it uses are copied.

See Also:
NORMAL_COPY, BIContext.copy(javax.naming.Name, javax.naming.directory.DirContext, javax.naming.Name, int)

STORAGEMANAGER_DRIVER

public static final java.lang.String STORAGEMANAGER_DRIVER
The implementation of a StorageManager that the PersistenceManager should use. The value must be a String that identifies the name of the class that implements the StorageManager interface. To use the default storage manager, use the value "oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl".

INITIAL_PATHNAME

public static final java.lang.String INITIAL_PATHNAME
Environment property: Specifies the initial directory to use when the file based storagemanager is used. This must be specified when the file based storagemanager is used.

ZIP_FILE

public static final java.lang.String ZIP_FILE
Environment property: Specifies the name of the zip file (full path name) when the zip file based storagemanager is used. This must be specified when the zip file based storagemanager is used.

ZIP_ROOT_PATH

public static final java.lang.String ZIP_ROOT_PATH
Environment property: Specifies the path of the root folder within the zip file when the zip file based storagemanager is used. The default path is "".

BISESSION

public static final java.lang.String BISESSION
Environment property: Specifies which user session the PersistenceManager belongs to.

Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


Copyright © 2003, Oracle. All Rights Reserved.