Serialized Form


Package atg.adapter.gsa

Class atg.adapter.gsa.ArrayTable extends atg.adapter.gsa.ListTable implements Serializable

Class atg.adapter.gsa.ChangeAwareList extends java.util.AbstractList implements Serializable

serialVersionUID: -7735283197191640414L

Serialized Fields

mRepItemList

boolean mRepItemList

mBaseList

java.util.ArrayList<E> mBaseList

mModifiedList

java.util.ArrayList<E> mModifiedList

mFullLoadThreshold

int mFullLoadThreshold

mLoadCounter

int mLoadCounter

Class atg.adapter.gsa.ChangeAwareMap extends java.util.AbstractMap implements Serializable

serialVersionUID: -6491139614070627539L

Serialized Fields

mBaseMap

java.util.Map<K,V> mBaseMap

mAddMap

java.util.Map<K,V> mAddMap

mRemovedKeys

java.util.Set<E> mRemovedKeys

mModCount

int mModCount

Class atg.adapter.gsa.ChangeAwareSet extends java.util.AbstractSet implements Serializable

serialVersionUID: -6922096411843729034L

Serialized Fields

mBaseSet

java.util.Set<E> mBaseSet

mAdds

java.util.Set<E> mAdds

mRemoves

java.util.Set<E> mRemoves

mModCount

int mModCount

mCleared

boolean mCleared

Class atg.adapter.gsa.DatabaseTableInfo extends java.lang.Object implements Serializable

Serialized Fields

mDefaultStringLength

int mDefaultStringLength

mDefaultIDColumnType

int mDefaultIDColumnType

mVarcharType

java.lang.String mVarcharType

mLongVarcharType

java.lang.String mLongVarcharType

mCharType

java.lang.String mCharType

mDecimalType

java.lang.String mDecimalType

mTimestampType

java.lang.String mTimestampType

mDateType

java.lang.String mDateType

mBinaryType

java.lang.String mBinaryType

mIntType

java.lang.String mIntType

mSeparator

java.lang.String mSeparator

mCanBeNullSyntax

java.lang.String mCanBeNullSyntax

mCommentSyntax

java.lang.String mCommentSyntax

mTextSearchStringFormat

java.lang.String mTextSearchStringFormat

Class atg.adapter.gsa.DatePropertyDescriptor extends GSAPropertyDescriptor implements Serializable

Serialized Fields

mUseNowForDefault

boolean mUseNowForDefault

Class atg.adapter.gsa.DBConnectionInfo extends GenericService implements Serializable

Serialized Fields

mServer

java.lang.String mServer

mUser

java.lang.String mUser

mPassword

java.lang.String mPassword

Class atg.adapter.gsa.DoubleValueGSAId extends atg.repository.CompositeKeyImpl implements Serializable

Serialized Fields

mIdSeparator

char mIdSeparator

mGSAItemDescriptor

GSAItemDescriptor mGSAItemDescriptor

mStringValCached

java.lang.String mStringValCached

Class atg.adapter.gsa.EnumPropertyDescriptor extends GSAPropertyDescriptor implements Serializable

serialVersionUID: -5187612562121723738L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

mEnumValueToCode

java.util.Map<K,V> mEnumValueToCode

mEnumCodeToValue

java.util.Map<K,V> mEnumCodeToValue

mEnumValues

java.lang.String[] mEnumValues

mEnumCodes

java.lang.Integer[] mEnumCodes

mEnumResources

java.lang.String[] mEnumResources

mHasResources

boolean mHasResources

mUseCodeForValue

boolean mUseCodeForValue

Class atg.adapter.gsa.GSAAdminServlet extends atg.repository.content.ContentRepositoryAdminServlet implements Serializable

Serialized Fields

mRepository

atg.adapter.gsa.GSARepository mRepository

Class atg.adapter.gsa.GSAContentItem extends atg.adapter.gsa.GSAItem implements Serializable

Class atg.adapter.gsa.GSAFolder extends atg.adapter.gsa.GSAItem implements Serializable

Class atg.adapter.gsa.GSAItem extends RepositoryItemImpl implements Serializable

serialVersionUID: 7149476388534813472L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mRepositoryId

atg.adapter.gsa.GSAId mRepositoryId

mCurrentProperties

java.util.HashMap<K,V> mCurrentProperties

mTransient

boolean mTransient

mRemoved

boolean mRemoved

mInCache

boolean mInCache

mRemoveInProgress

boolean mRemoveInProgress

mPrev

atg.adapter.gsa.GSAItem mPrev

mNext

atg.adapter.gsa.GSAItem mNext

mLastAccessed

long mLastAccessed

mFirstCached

long mFirstCached

mAmbiguousItemDescriptorName

java.lang.String mAmbiguousItemDescriptorName

Class atg.adapter.gsa.GSAItemDescriptor extends ItemDescriptorImpl implements Serializable

serialVersionUID: -1109047773108275539L

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream pStream)
                  throws java.io.IOException
We only need to serialize the mPropertyDescriptors

Throws:
java.io.IOException
Serialized Fields

mLastEventWarning

long mLastEventWarning
The last time there was a problem sending an invalidation event.


mId

int mId
unique id of the descriptor


mIdSpaceNames

java.lang.String[] mIdSpaceNames
name of id spaces to use when generating ids for items, this will default to (primary-table-name).(id-column-name).


mItemCacheSize

int mItemCacheSize

mItemCacheTimeout

long mItemCacheTimeout

mItemExpireTimeout

long mItemExpireTimeout

mCacheSwitchLoadQueries

boolean mCacheSwitchLoadQueries
Flag to control query loading during cache switches. If true the query cache is loaded for a cache switch. If false the query cache starts out empty after a cache switch.


mDefaultUncachedItemQueries

boolean mDefaultUncachedItemQueries

mUseCacheForDelete

boolean mUseCacheForDelete
If true, attempt to optimize certain SQL delete operations based on the values in the cache. For certain usage patterns, such as when there are many multi-valued properties, setting this to true can result in a significant performance gain. This property should only be set to true when either a) a version property is defined or b) cache mode is "locked". The default is false.


mWritable

boolean mWritable

mLoadItemBatchSize

int mLoadItemBatchSize
The maximum number of items to load from the database at one time. This property is consulted by getItems() and the hot cache switching logic.


mRqlFilterString

java.lang.String mRqlFilterString
RQL query string that is used as a filter if filterQuery is not set. The default is null.


mFilterQuery

atg.adapter.gsa.query.Clause mFilterQuery
Query object that is used for filtering all DB reads performed by this item descriptor. This query is AND-ed to all queries that are executed and is also applied as criteria for the various getItem() methods. This property linked to the rqlFilterString property. If filterQuery is null, we try to build a Query for filtering from rqlFilterString. If both properties are null or there is a problem building a Query from the rqlFilterString, filtering is disabled. The default is null.


mCascadeDeleteOrder

int mCascadeDeleteOrder
this property controls when cascade delete operations are performed.


mParentDescriptor

GSAItemDescriptor mParentDescriptor
if this object is a subtype (aka child type), then the ParentDescriptor defines this object's immediate supertype. Otherwise ParentDescriptor is null.


mGSAPropertyDescriptors

DynamicPropertyDescriptor[] mGSAPropertyDescriptors

mGSAPropertyNames

java.lang.String[] mGSAPropertyNames

mGroupItemDescriptor

RepositoryItemDescriptor mGroupItemDescriptor

mGroupPropertyCount

int mGroupPropertyCount

mPropertiesHaveChanged

boolean mPropertiesHaveChanged
To avoid unnecessary rebuilds and synch problems (pr60307)


mGSAPropertyDescriptorTable

java.util.Dictionary<K,V> mGSAPropertyDescriptorTable

mSuperTypeDescriptor

GSAItemDescriptor mSuperTypeDescriptor

mSubTypeDescriptors

GSAItemDescriptor[] mSubTypeDescriptors

mTypeDescriptorMap

java.util.Map<K,V> mTypeDescriptorMap

mSubTypeValue

java.lang.Object mSubTypeValue

mSubTypeValueString

java.lang.String mSubTypeValueString

mIdProperty

GSAPropertyDescriptor mIdProperty
property that refers to the repository id, may be null


mIdTypes

java.lang.Class<T>[] mIdTypes
the class types comprising the id


mChildItemDescriptors

java.util.Map<K,V> mChildItemDescriptors

mSubTypeProperty

GSAPropertyDescriptor mSubTypeProperty

mDefaultTextSearchProperties

GSAPropertyDescriptor[] mDefaultTextSearchProperties
default properties to use for full text search queries


mCacheMode

java.lang.String mCacheMode

mLockedCacheMode

boolean mLockedCacheMode

mDisabledCacheMode

boolean mDisabledCacheMode

mSimpleCacheMode

boolean mSimpleCacheMode

mDistributedCacheMode

boolean mDistributedCacheMode

mDistributedJMSCacheMode

boolean mDistributedJMSCacheMode

mIsolationLevel

int mIsolationLevel

subscriberXML

java.lang.String subscriberXML

mSubscribed

boolean mSubscribed

mIdSeparator

char mIdSeparator
character used to encode composite keys


mDefaultProperties

GSAPropertyDescriptor[] mDefaultProperties
the properties to load into cache when a repository item is loaded from the database


mWarnedForMissingSubscriber

boolean mWarnedForMissingSubscriber

mContentPathProperty

RepositoryPropertyDescriptor mContentPathProperty

mContentNameProperty

RepositoryPropertyDescriptor mContentNameProperty

mUseIdForPath

boolean mUseIdForPath

mIdEqualsPath

boolean mIdEqualsPath

mFolderIdProperty

RepositoryPropertyDescriptor mFolderIdProperty

mLastModifiedProperty

RepositoryPropertyDescriptor mLastModifiedProperty

mLastModifiedUpdateProperty

GSAPropertyDescriptor mLastModifiedUpdateProperty

mContentLengthProperty

RepositoryPropertyDescriptor mContentLengthProperty

mContentChecksumProperty

RepositoryPropertyDescriptor mContentChecksumProperty

mContentProperty

RepositoryPropertyDescriptor mContentProperty

mContent

boolean mContent

mVersionProperty

RepositoryPropertyDescriptor mVersionProperty

mCascadeInsertProperties

RepositoryPropertyDescriptor[] mCascadeInsertProperties

mCascadeUpdateProperties

RepositoryPropertyDescriptor[] mCascadeUpdateProperties

mCascadeDeleteProperties

RepositoryPropertyDescriptor[] mCascadeDeleteProperties

mManyToOneProperties

RepositoryPropertyDescriptor[] mManyToOneProperties

mStoreTransientItems

boolean mStoreTransientItems

mStoreTransientItemsOnCommit

boolean mStoreTransientItemsOnCommit
This flag, if set to TRUE will result in transient items being created in the "RAM profile" on transaction commit (which means that on rollback, transient items won't exist). If FALSE, the old behavior will be preserved. The default setting is TRUE


mLoggingDebug

boolean mLoggingDebug

mSplitQueries

boolean mSplitQueries
if true repository queries are split into pieces for SQL generation as needed for correctness. If false, queries are not split. A setting of false may result in fewer SQL queries but may also result in incorrect query results in certain cases. See PR#53204 for details. The default is true.


mVersionDescriptorWrapper

atg.adapter.version.VersionItemDescriptor mVersionDescriptorWrapper
If our repository is used for versioning, this is the version descriptor that wraps us.


mInitialized

boolean mInitialized
flag to inidicate whether of not updateItemDescriptor() has been called


mHasCacheReferencesById

boolean mHasCacheReferencesById
This gets set to true whenever a property with the cacheReferencesById flag is set to true. It is mainly a performance optimization since if we know we are not doing this conversion logic, we can skip some steps in getting things out of and putting them into the cache

Class atg.adapter.gsa.GSAPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

serialVersionUID: -1618115300262732601L

Serialized Fields

mId

int mId
unique id of the attribute


mComponentPropertyType

java.lang.Class<T> mComponentPropertyType

mDefaultProperty

boolean mDefaultProperty
true if this property descriptor is one of the default properties for this item descriptor, else false. This value is set by the item descriptor.


mTextIndexTable

atg.adapter.gsa.Table mTextIndexTable
The text index table to use for performing full text searches on this property.


mHandleColumn

java.lang.String mHandleColumn
The text column that is the handle for a large text column being searched. (useful for DB2)


mColumnNames

java.lang.String[] mColumnNames
names of the columns that holds the value of this attribute


mTypeIsGSAId

java.lang.Boolean mTypeIsGSAId
Get property GSAId


mIdPartIndices

int[] mIdPartIndices
Array of 0-based indices to the Id elements this property descriptor represents if it shares some of it's columns with the primary key, otherwise null.


mDataTypes

int[] mDataTypes

mIsJDBCPrimaryKey

boolean[] mIsJDBCPrimaryKey

mJDBCPrimaryKeyNames

java.lang.String[] mJDBCPrimaryKeyNames

mJDBCPrimaryKeyNamesKnown

boolean mJDBCPrimaryKeyNamesKnown

mJDBCColumnLengths

int[] mJDBCColumnLengths

mJDBCColumnLengthsKnown

boolean mJDBCColumnLengthsKnown

mJDBCTypes

int[] mJDBCTypes
JDBC data types to use for this property


mJDBCTypesKnown

boolean mJDBCTypesKnown
If true, the JDBC types for this property are known and can be used. If false when getJDBCType() is called we attempt to load the info from the DB. This initial value of this property is false.


mCacheMode

java.lang.String mCacheMode

mGroupProperties

GSAPropertyDescriptor[] mGroupProperties

mGroup

java.lang.String mGroup

mMapSub

boolean mMapSub
Convenience method for retrieving mapsub property status.


mInternallyWritable

java.lang.Boolean mInternallyWritable

mInherited

boolean mInherited

mManyToOneIdProperty

GSAPropertyDescriptor mManyToOneIdProperty

mManyToOneMultiProperty

GSAPropertyDescriptor mManyToOneMultiProperty

mRemoveNullValues

boolean mRemoveNullValues

mCacheReferencesById

boolean mCacheReferencesById

Class atg.adapter.gsa.IdPropertyDescriptor extends GSAPropertyDescriptor implements Serializable

Class atg.adapter.gsa.ListTable extends atg.adapter.gsa.Table implements Serializable

serialVersionUID: -2042594460471704835L

Class atg.adapter.gsa.LockKey extends java.lang.Object implements Serializable

Serialized Fields

invalidationAbsoluteName

java.lang.String invalidationAbsoluteName

itemDescriptorName

java.lang.String itemDescriptorName

repositoryId

java.lang.String repositoryId

Class atg.adapter.gsa.MapTable extends atg.adapter.gsa.Table implements Serializable

Class atg.adapter.gsa.MultiValueGSAId extends atg.repository.CompositeKeyImpl implements Serializable

Serialized Fields

mIdSeparator

char mIdSeparator

mGSAItemDescriptor

GSAItemDescriptor mGSAItemDescriptor

mStringValCached

java.lang.String mStringValCached

Class atg.adapter.gsa.OutputSQLContext extends java.util.HashSet implements Serializable

Serialized Fields

mOutWriter

java.io.PrintWriter mOutWriter

Class atg.adapter.gsa.ReplicatePropertyDescriptor extends GSAPropertyDescriptor implements Serializable

Serialized Fields

mReplicateProperty

java.lang.String mReplicateProperty

Class atg.adapter.gsa.SetTable extends atg.adapter.gsa.Table implements Serializable

Serialized Fields

mMaximumExpressions

int mMaximumExpressions

Class atg.adapter.gsa.SingleValueGSAId extends atg.repository.CompositeKeyImpl implements Serializable

Serialized Fields

mGSAItemDescriptor

GSAItemDescriptor mGSAItemDescriptor

Class atg.adapter.gsa.Table extends SerializableFeatureDescriptor implements Serializable

serialVersionUID: -8001210800449303324L

Serialized Fields

mId

int mId

mItemDescriptor

GSAItemDescriptor mItemDescriptor

mName

java.lang.String mName

mAssetVersionColumnName

java.lang.String mAssetVersionColumnName

mPrimaryTable

boolean mPrimaryTable

mMultiTable

boolean mMultiTable

mMultiType

java.lang.Class<T> mMultiType

mItemDescriptors

java.util.Set<E> mItemDescriptors

mProperties

GSAPropertyDescriptor[] mProperties

mPropertyTable

java.util.Dictionary<K,V> mPropertyTable

mIdColumnNames

java.lang.String[] mIdColumnNames

mColumnNames

java.lang.String[] mColumnNames

mIdColumnNamesNoVersion

java.lang.String[] mIdColumnNamesNoVersion

mMultiColumnName

java.lang.String mMultiColumnName

mInherited

boolean mInherited

mIdProperty

GSAPropertyDescriptor mIdProperty

mTableSQLInsertExtension

atg.adapter.gsa.TableSQLInsertExtension mTableSQLInsertExtension

mTableSQLUpdateExtension

atg.adapter.gsa.TableSQLUpdateExtension mTableSQLUpdateExtension

mMetaDataSchemaPattern

java.lang.String mMetaDataSchemaPattern

mMetaDataCatalogName

java.lang.String mMetaDataCatalogName

mTablePrefix

java.lang.String mTablePrefix

mMetaDataSynonymTableName

java.lang.String mMetaDataSynonymTableName

mColumnInfoLoaded

boolean mColumnInfoLoaded

mColumnDefinitions

java.util.Map<K,V> mColumnDefinitions

mReadOnly

boolean mReadOnly

mReadOnlyForDeletes

boolean mReadOnlyForDeletes

mTruncatable

boolean mTruncatable

Class atg.adapter.gsa.TripleValueGSAId extends atg.repository.CompositeKeyImpl implements Serializable

Serialized Fields

mIdSeparator

char mIdSeparator

mGSAItemDescriptor

GSAItemDescriptor mGSAItemDescriptor

mStringValCached

java.lang.String mStringValCached

Package atg.adapter.gsa.invalidator

Class atg.adapter.gsa.invalidator.GSAInvalidationMessage extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryPath

java.lang.String mRepositoryPath

mItemDescriptorName

java.lang.String mItemDescriptorName

mItemId

java.lang.String mItemId

Class atg.adapter.gsa.invalidator.GSAInvalidatorService extends GenericRMIService implements Serializable

Serialized Fields

mMaxItemsPerEvent

int mMaxItemsPerEvent

mNumEventsSent

int mNumEventsSent

mNumCompressedEventsSent

int mNumCompressedEventsSent

mContext

MessageSourceContext mContext

mActive

boolean mActive

mEnabled

boolean mEnabled

mServerName

atg.service.ServerName mServerName

Class atg.adapter.gsa.invalidator.GSAInvalidatorService_Stub extends java.rmi.server.RemoteStub implements Serializable

serialVersionUID: 2L

Class atg.adapter.gsa.invalidator.MultiTypeInvalidationMessage extends java.lang.Object implements Serializable

Serialized Fields

mMaxItems

int mMaxItems

mNumItems

int mNumItems

mCompressed

boolean mCompressed

mRepositoryPath

java.lang.String mRepositoryPath

mPerTypeInvalidationMap

java.util.Map<K,V> mPerTypeInvalidationMap

mServerId

java.lang.String mServerId

Package atg.adapter.gsa.query

Class atg.adapter.gsa.query.Builder extends java.lang.Object implements Serializable

serialVersionUID: 1554475793302549556L

Serialized Fields

mItemDescriptor

GSAItemDescriptor mItemDescriptor
item descriptor describing the item type which we know how to query


mRepository

atg.adapter.gsa.GSARepository mRepository
repository in which this item descriptor is valid


mSingleParameterExpression

atg.adapter.gsa.query.ParameterExpression mSingleParameterExpression
A single instance of a ParameterExpression that will be used as a placeholder for parameters in a query

Class atg.adapter.gsa.query.MapPropertyDescriptor extends GSAPropertyDescriptor implements Serializable

Serialized Fields

mMapProperty

GSAPropertyDescriptor mMapProperty

Package atg.adapter.html

Class atg.adapter.html.EnumeratedPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

serialVersionUID: -4727657047801701515L

Serialized Fields

mEnumeratedValues

java.lang.String[] mEnumeratedValues

Class atg.adapter.html.SimpleContentFolder extends atg.repository.content.ContentRepositoryFolderImpl implements Serializable

serialVersionUID: 1541074857271646477L

Serialized Fields

mAncestorFolderPaths

java.lang.String[] mAncestorFolderPaths

mAncestorFolderIds

java.lang.String[] mAncestorFolderIds

mChildFolderPaths

java.lang.String[] mChildFolderPaths

mChildFolderIds

java.lang.String[] mChildFolderIds

mChildContentPaths

java.lang.String[] mChildContentPaths

mChildContentIds

java.lang.String[] mChildContentIds

mFile

java.io.File mFile

Class atg.adapter.html.SimpleRepositoryItem extends java.lang.Object implements Serializable

serialVersionUID: 8992300759661077436L

Serialized Fields

mId

java.lang.String mId

mMetaInfo

java.util.Dictionary<K,V> mMetaInfo

mAncestorFolderPaths

java.lang.String[] mAncestorFolderPaths

mItemDescriptor

RepositoryItemDescriptor mItemDescriptor

mContent

java.io.File mContent

mTransient

boolean mTransient

mCopy

boolean mCopy

Class atg.adapter.html.SimpleRepositoryItemDescriptor extends atg.repository.content.ContentItemDescriptor implements Serializable

serialVersionUID: -4154174124589274629L


Package atg.adapter.integrations

Class atg.adapter.integrations.ChangedPropertyBeanInfo extends ItemDescriptorImpl implements Serializable

Serialized Fields

mPropertyDescriptors

java.util.Map<K,V> mPropertyDescriptors

mPropertyDescriptorsAsArray

DynamicPropertyDescriptor[] mPropertyDescriptorsAsArray

mChangedPropertyBean

atg.adapter.integrations.ChangedPropertyBean mChangedPropertyBean

Class atg.adapter.integrations.IntegrationExternalIdChange extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryName

java.lang.String mRepositoryName

mItemDescriptor

java.lang.String mItemDescriptor

mItem

RepositoryItem mItem

mOldValue

java.lang.String mOldValue

mNewValue

java.lang.String mNewValue

Class atg.adapter.integrations.IntegrationQueryBuilder extends atg.repository.query.QueryBuilderImpl implements Serializable

Class atg.adapter.integrations.IntegrationRepositoryAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mRepository

atg.adapter.integrations.IntegrationRepository mRepository

Class atg.adapter.integrations.IntegrationRepositoryCommandDescriptor extends java.lang.Object implements Serializable

Serialized Fields

mTimeoutResponse

java.lang.String mTimeoutResponse

mMappingFile

java.lang.String mMappingFile

Class atg.adapter.integrations.IntegrationRepositoryItem extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mChangedProperties

java.util.Map<K,V> mChangedProperties

mLocalRepositoryItem

RepositoryItem mLocalRepositoryItem

mRepository

Repository mRepository

mRepositoryItemDescriptor

ItemDescriptorImpl mRepositoryItemDescriptor

Class atg.adapter.integrations.IntegrationRepositoryItemDescriptor extends ItemDescriptorImpl implements Serializable

Serialized Fields

mPropertyDescriptorsByName

java.util.Dictionary<K,V> mPropertyDescriptorsByName

mIntegrationPropertyDescriptors

DynamicPropertyDescriptor[] mIntegrationPropertyDescriptors

mPropertyNames

java.lang.String[] mPropertyNames

mGroupItemDescriptor

RepositoryItemDescriptor mGroupItemDescriptor

mGroupPropertyCount

int mGroupPropertyCount

mDerivedPropertyReferences

java.util.Map<K,V> mDerivedPropertyReferences

mIntegrated

boolean mIntegrated

mUseLocalRepositoryView

boolean mUseLocalRepositoryView

mLocalItemDescriptor

RepositoryItemDescriptor mLocalItemDescriptor

mQueryCommand

atg.adapter.integrations.IntegrationRepositoryCommandDescriptor mQueryCommand

mGetItemCommand

atg.adapter.integrations.IntegrationRepositoryCommandDescriptor mGetItemCommand

mUpdateItemCommand

atg.adapter.integrations.IntegrationRepositoryCommandDescriptor mUpdateItemCommand

mAddItemCommand

atg.adapter.integrations.IntegrationRepositoryCommandDescriptor mAddItemCommand

mRemoveItemCommand

atg.adapter.integrations.IntegrationRepositoryCommandDescriptor mRemoveItemCommand

mReadOnlyStates

java.lang.String[] mReadOnlyStates

mAllowLocalOperation

boolean mAllowLocalOperation

mMappingFile

java.lang.String mMappingFile

mExternalIdProperty

java.lang.String mExternalIdProperty

mUseExternalId

boolean mUseExternalId

mUseLocalOnFailure

boolean mUseLocalOnFailure

mUpdateChangedPropertiesOnly

boolean mUpdateChangedPropertiesOnly

mUpdateLocalOnUpdate

boolean mUpdateLocalOnUpdate

mUpdateLocalOnAdd

boolean mUpdateLocalOnAdd

mIgnoreExternalIdChange

boolean mIgnoreExternalIdChange

mLocalValueTimeout

int mLocalValueTimeout

mIntegrationRepositoryTools

IntegrationRepositoryTools mIntegrationRepositoryTools

mPersistentCacheManager

PersistentCacheManager mPersistentCacheManager

mHeirarchyConfigured

boolean mHeirarchyConfigured

mChildItemDescriptors

java.util.Map<K,V> mChildItemDescriptors

mParentItemDescriptor

atg.adapter.integrations.IntegrationRepositoryItemDescriptor mParentItemDescriptor

Class atg.adapter.integrations.IntegrationRepositoryList extends java.util.ArrayList implements Serializable

Serialization Methods

writeReplace

private java.lang.Object writeReplace()
Serialized Fields

mRepository

atg.adapter.integrations.IntegrationRepository mRepository

mLocalList

java.util.List<E> mLocalList

Class atg.adapter.integrations.IntegrationRepositoryPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mLocalPropertyDescriptor

RepositoryPropertyDescriptor mLocalPropertyDescriptor

mExternalName

java.lang.String mExternalName

Class atg.adapter.integrations.IntegrationRepositoryTools extends GenericService implements Serializable

Serialized Fields

mMessagePort

java.lang.String mMessagePort

mAllowMessageSending

boolean mAllowMessageSending

Class atg.adapter.integrations.IntegrationRepositoryView extends RepositoryViewImpl implements Serializable

Serialized Fields

mQueryBuilder

QueryBuilder mQueryBuilder

Class atg.adapter.integrations.PersistentCacheManager extends GenericService implements Serializable

Serialized Fields

mTransientCacheData

boolean mTransientCacheData

Package atg.adapter.secure

Class atg.adapter.secure.GenericSecuredRepositoryItemDescriptor extends atg.adapter.secure.SecuredRepositoryObjectDescriptor implements Serializable

serialVersionUID: -883521956017074395L

Serialized Fields

mPropertyDescriptorsByName

atg.core.util.UnsyncCaseInsensitiveHashtable mPropertyDescriptorsByName

Class atg.adapter.secure.SecuredList extends java.util.ArrayList implements Serializable

Serialization Methods

writeReplace

private java.lang.Object writeReplace()
Serialized Fields

mRepository

GenericSecuredRepository mRepository

mProperty

atg.adapter.secure.SecuredRepositoryProperty mProperty

mOriginalList

java.util.List<E> mOriginalList

Class atg.adapter.secure.SecuredRepositoryObjectDescriptor extends atg.security.GenericSecuredContainer implements Serializable

Serialized Fields

mRawItemDescriptor

RepositoryItemDescriptor mRawItemDescriptor

mAclPropertyName

java.lang.String mAclPropertyName

mOwnerPropertyName

java.lang.String mOwnerPropertyName

mDefaultAcl

AccessControlList mDefaultAcl

mAclManager

atg.adapter.secure.AclManager mAclManager

mCacheLifetime

long mCacheLifetime

Class atg.adapter.secure.SecuredRepositoryPropertyDescriptor extends atg.adapter.secure.SecuredRepositoryObjectDescriptor implements Serializable

Serialized Fields

mPropertyName

java.lang.String mPropertyName

mItemDescriptor

atg.adapter.secure.GenericSecuredRepositoryItemDescriptor mItemDescriptor

mSecured

boolean mSecured

Class atg.adapter.secure.WrappedRepositoryPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mRawDescriptor

RepositoryPropertyDescriptor mRawDescriptor

Package atg.adapter.xml

Class atg.adapter.xml.XMLItemDescriptor extends atg.adapter.html.SimpleRepositoryItemDescriptor implements Serializable

Class atg.adapter.xml.XMLRepositoryItem extends atg.adapter.html.SimpleRepositoryItem implements Serializable

Serialized Fields

mXMLDeclaration

atg.xml.service.XMLDeclaration mXMLDeclaration

mXMLDeclarationParser

atg.xml.service.XMLDeclarationParser mXMLDeclarationParser

Class atg.adapter.xml.XMLRepositoryPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mXSLExpression

java.lang.String mXSLExpression

Package atg.b2bcommerce.approval

Class atg.b2bcommerce.approval.ApprovalException extends CommerceException implements Serializable

Class atg.b2bcommerce.approval.ApprovalMessage extends CommerceMessageImpl implements Serializable

serialVersionUID: 2998186090368670154L

Serialized Fields

mApprovalStatus

java.lang.String mApprovalStatus

mOrder

Order mOrder

mProfile

RepositoryItem mProfile

mOrderOwnerProfile

RepositoryItem mOrderOwnerProfile

Class atg.b2bcommerce.approval.ApprovalRequiredMessage extends CommerceMessageImpl implements Serializable

serialVersionUID: -5039243773905458570L

Serialized Fields

mOrder

Order mOrder

mProfile

RepositoryItem mProfile

Package atg.b2bcommerce.invoice

Class atg.b2bcommerce.invoice.InvoiceException extends ContainerException implements Serializable

Class atg.b2bcommerce.invoice.InvoicePipelineException extends java.lang.Exception implements Serializable

Serialized Fields

mPipelineResult

PipelineResult mPipelineResult

Class atg.b2bcommerce.invoice.ItemWasModifiedException extends InvoiceException implements Serializable

Serialized Fields

mRepositoryId

java.lang.String mRepositoryId

Package atg.b2bcommerce.invoice.messaging

Class atg.b2bcommerce.invoice.messaging.InvoiceMessage extends java.lang.Object implements Serializable

Serialized Fields

mInvoiceRepositoryId

java.lang.String mInvoiceRepositoryId

mOrderId

java.lang.String mOrderId

mPaymentGroupId

java.lang.String mPaymentGroupId

mProfile

RepositoryItem mProfile

mInvoiceNumber

java.lang.String mInvoiceNumber

mPONumber

java.lang.String mPONumber

mRequisitionNumber

java.lang.String mRequisitionNumber

mBillingAddress

Address mBillingAddress

mPreferredFormat

java.lang.String mPreferredFormat

mPreferredDeliveryMode

java.lang.String mPreferredDeliveryMode

mBalanceDue

java.lang.Double mBalanceDue

mPaymentDueDate

java.util.Date mPaymentDueDate

mPaymentNetDays

java.lang.Integer mPaymentNetDays

mPaymentDiscountDays

java.lang.Integer mPaymentDiscountDays

mPaymentDiscountPercent

java.lang.Double mPaymentDiscountPercent

Package atg.b2bcommerce.invoice.pipeline

Class atg.b2bcommerce.invoice.pipeline.InvoicePipelineArgs extends java.util.HashMap implements Serializable


Package atg.b2bcommerce.order

Class atg.b2bcommerce.order.B2BCommerceItemImpl extends CommerceItemImpl implements Serializable

Serialized Fields

mCostCenterRelationshipContainer

CostCenterRelationshipContainerImpl mCostCenterRelationshipContainer

Class atg.b2bcommerce.order.B2BCommerceItemRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.b2bcommerce.order.B2BConfigurableCommerceItem extends ConfigurableCommerceItem implements Serializable

Serialized Fields

mCostCenterRelationshipContainer

CostCenterRelationshipContainerImpl mCostCenterRelationshipContainer

Class atg.b2bcommerce.order.B2BElectronicShippingGroup extends ElectronicShippingGroup implements Serializable

Serialized Fields

mB2BShippingGroupImpl

B2BShippingGroupImpl mB2BShippingGroupImpl

Class atg.b2bcommerce.order.B2BHardgoodShippingGroup extends HardgoodShippingGroup implements Serializable

Serialized Fields

mB2BShippingGroupImpl

B2BShippingGroupImpl mB2BShippingGroupImpl

Class atg.b2bcommerce.order.B2BOrderImpl extends OrderImpl implements Serializable

Class atg.b2bcommerce.order.B2BOrderRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mOrderRelationship

B2BOrderRelationship mOrderRelationship

Class atg.b2bcommerce.order.B2BRelationshipTypes extends RelationshipTypes implements Serializable

Class atg.b2bcommerce.order.B2BShippingGroupImpl extends ShippingGroupImpl implements Serializable

Serialized Fields

mCostCenterRelationshipContainer

CostCenterRelationshipContainerImpl mCostCenterRelationshipContainer

Class atg.b2bcommerce.order.B2BShippingGroupRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.b2bcommerce.order.CostCenterCommerceItemRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mCostCenter

CostCenter mCostCenter

mCommerceItem

B2BCommerceItem mCommerceItem

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.b2bcommerce.order.CostCenterContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.b2bcommerce.order.CostCenterImpl extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mCommerceItemRelationshipContainer

B2BCommerceItemRelationshipContainerImpl mCommerceItemRelationshipContainer

mShippingGroupRelationshipContainer

B2BShippingGroupRelationshipContainerImpl mShippingGroupRelationshipContainer

mOrderRelationshipContainer

B2BOrderRelationshipContainerImpl mOrderRelationshipContainer

mDescription

java.lang.String mDescription

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.b2bcommerce.order.CostCenterNotFoundException extends CommerceException implements Serializable

Class atg.b2bcommerce.order.CostCenterOrderRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mCostCenter

CostCenter mCostCenter

mOrder

B2BOrder mOrder

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.b2bcommerce.order.CostCenterRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.b2bcommerce.order.CostCenterShippingGroupRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mShippingGroup

B2BShippingGroup mShippingGroup

mCostCenter

CostCenter mCostCenter

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.b2bcommerce.order.DuplicateCostCenterException extends CommerceException implements Serializable


Package atg.b2bcommerce.order.processor

Class atg.b2bcommerce.order.processor.ValidateCostCenterPipelineArgs extends ValidationPipelineArgs implements Serializable


Package atg.b2bcommerce.order.purchase

Class atg.b2bcommerce.order.purchase.CostCenterContainerService extends GenericService implements Serializable

Serialized Fields

mCommerceIdentifierCostCenterMap

java.util.Map<K,V> mCommerceIdentifierCostCenterMap

mCostCenterMap

java.util.Map<K,V> mCostCenterMap

mDefaultCostCenterName

java.lang.String mDefaultCostCenterName

Package atg.b2bcommerce.order.scheduled

Class atg.b2bcommerce.order.scheduled.ScheduledOrderAction extends Enum implements Serializable

serialVersionUID: -3288075534745625889L

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
This override is necessary to work around what appears to be a JRockit bug--the static initializers for an Enum subclass first referenced on the client via RMI were not being called prior to invoking the superclass readResolve method; i.e., Enum.readResolve. (See bug 73531.) To my knowledge, the specific situation which triggers this problem has not yet occurred with this class but I'm adding this innocuous workaround as a prophylactic measure.

Throws:
java.io.ObjectStreamException

Class atg.b2bcommerce.order.scheduled.ScheduledOrderMessage extends CommerceMessageImpl implements Serializable

serialVersionUID: -3365213078847456021L

Serialized Fields

mProfile

RepositoryItem mProfile

mAction

ScheduledOrderAction mAction

mScheduledOrder

RepositoryItem mScheduledOrder

Package atg.b2bcommerce.payment.invoicerequest

Class atg.b2bcommerce.payment.invoicerequest.InvoiceRequest extends PaymentGroupImpl implements Serializable

Serialized Fields

mBillingAddress

Address mBillingAddress

Package atg.beans

Class atg.beans.DynamicBeanDescriptor extends SerializableFeatureDescriptor implements Serializable

serialVersionUID: -347386929618371332L

Class atg.beans.DynamicBeanState extends java.lang.Object implements Serializable

serialVersionUID: -3238416846733753624L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
When deserializing, defer resolution of the bean info.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream stream)
                  throws java.io.IOException
When serializing, create a special dictionary of only the serializable properties.

Throws:
java.io.IOException
Serialized Fields

mInfo

DynamicBeanInfo mInfo
DynamicBeanInfo for the object whose state was copied


mBeanInfoKey

java.lang.Object mBeanInfoKey
The object generated by replaceBeanInfo, serialized in writeObject, and subsequently deserialized in readObject which is used as a key for lazily resolving the DynamicBeanInfo.


mProperties

java.util.Hashtable<K,V> mProperties
Hashtable of property values


mModifiedPropertyNames

java.util.Vector<E> mModifiedPropertyNames
Vector of property names which have been modified

Class atg.beans.DynamicPropertyDescriptor extends SerializableFeatureDescriptor implements Serializable

serialVersionUID: 7603124590913897226L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pIn)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mReadable

boolean mReadable

mWritable

boolean mWritable

mRequired

boolean mRequired

Class atg.beans.MergedDynamicBeanInfo extends java.lang.Object implements Serializable

serialVersionUID: 6674587561782729270L

Serialized Fields

mBeanDescriptor

DynamicBeanDescriptor mBeanDescriptor

mPropertyDescriptorTable

java.util.Hashtable<K,V> mPropertyDescriptorTable

mPropertyNames

java.lang.String[] mPropertyNames

mPropertyDescriptors

DynamicPropertyDescriptor[] mPropertyDescriptors

Class atg.beans.PropertyNotFoundException extends java.lang.Exception implements Serializable

serialVersionUID: -8452823156709463544L

Class atg.beans.SerializableFeatureDescriptor extends java.beans.FeatureDescriptor implements Serializable

serialVersionUID: -2838051153704950676L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
When deserializing, do the inverse of above.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream stream)
                  throws java.io.IOException
When serializing, write out superclass' state. This is kind of wasteful, but all the FeatureDescriptor state is private, and we'd like SerializableFeatureDescriptor to really be an instance of FeatureDescriptor.

Throws:
java.io.IOException
Serialized Fields

mDisplayNameResource

java.lang.String mDisplayNameResource

mShortDescriptionResource

java.lang.String mShortDescriptionResource

Class atg.beans.SimpleDynamicBeanInfo extends java.lang.Object implements Serializable

serialVersionUID: -410573203239072361L


Package atg.commerce

Class atg.commerce.CommerceException extends ContainerException implements Serializable

Class atg.commerce.CommercePipelineException extends CommerceException implements Serializable

Serialized Fields

mErrorMap

java.util.Map<K,V> mErrorMap

mFirstErrorMessage

java.lang.String mFirstErrorMessage

mHasErrors

boolean mHasErrors

Package atg.commerce.catalog

Class atg.commerce.catalog.CatalogTypeInfo extends java.lang.Object implements Serializable

Serialized Fields

mCatalogRepositoryName

java.lang.String mCatalogRepositoryName

mBaseProductItemType

java.lang.String mBaseProductItemType

mProductItemTypes

java.lang.String[] mProductItemTypes

mProductBeanInfos

java.util.Map<K,V> mProductBeanInfos

mBaseCategoryItemType

java.lang.String mBaseCategoryItemType

mCategoryItemTypes

java.lang.String[] mCategoryItemTypes

mCategoryBeanInfos

java.util.Map<K,V> mCategoryBeanInfos

mBaseSKUItemType

java.lang.String mBaseSKUItemType

mSKUItemTypes

java.lang.String[] mSKUItemTypes

mSKUBeanInfos

java.util.Map<K,V> mSKUBeanInfos

Class atg.commerce.catalog.CMSMessage extends java.lang.Object implements Serializable

Serialized Fields

mTime

long mTime

mServiceName

java.lang.String mServiceName

mMessageText

java.lang.String mMessageText

mLevel

int mLevel

Package atg.commerce.catalog.comparison

Class atg.commerce.catalog.comparison.ProductComparisonList.Entry extends java.util.HashMap implements Serializable

Class atg.commerce.catalog.comparison.ProductComparisonList.Entry.InventoryData extends java.lang.Object implements Serializable

Serialized Fields

mStockLevel

java.lang.Long mStockLevel

mBackorderLevel

java.lang.Long mBackorderLevel

mPreorderLevel

java.lang.Long mPreorderLevel

mAvailabilityStatus

java.lang.Integer mAvailabilityStatus

mAvailabilityDate

java.util.Date mAvailabilityDate

mAvailabilityStatusMsg

java.lang.String mAvailabilityStatusMsg

Package atg.commerce.catalog.custom

Class atg.commerce.catalog.custom.CatalogAlias extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mPropertyName

java.lang.String mPropertyName
Values of these attributes for this particular property

Class atg.commerce.catalog.custom.CatalogChangesException extends java.lang.RuntimeException implements Serializable

Class atg.commerce.catalog.custom.CatalogLoopException extends CommerceException implements Serializable

Class atg.commerce.catalog.custom.CustomCatalogTypeInfo extends CatalogTypeInfo implements Serializable

Serialized Fields

mBaseCatalogItemType

java.lang.String mBaseCatalogItemType

mCatalogItemTypes

java.lang.String[] mCatalogItemTypes

mCatalogBeanInfos

java.util.Map<K,V> mCatalogBeanInfos

Class atg.commerce.catalog.custom.MigrationException extends CommerceException implements Serializable

Class atg.commerce.catalog.custom.MultipleCatalogException extends CommerceException implements Serializable


Package atg.commerce.claimable

Class atg.commerce.claimable.ClaimableException extends CommerceException implements Serializable

Serialized Fields

mErrorCode

java.lang.String mErrorCode

Class atg.commerce.claimable.InsufficientFundsException extends CommerceException implements Serializable

Class atg.commerce.claimable.InvalidParameterException extends CommerceException implements Serializable


Package atg.commerce.dp

Class atg.commerce.dp.CatalogMapDerivation extends atg.repository.dp.DerivationMethodImpl implements Serializable

Class atg.commerce.dp.CatalogMapPropertyDerivation extends CatalogMapDerivation implements Serializable

Serialized Fields

debug

boolean debug

Class atg.commerce.dp.CollectionCount extends atg.repository.dp.DerivationMethodImpl implements Serializable

Serialized Fields

debug

boolean debug

Class atg.commerce.dp.FirstWithAttribute extends atg.repository.dp.FirstWithAttribute implements Serializable

Class atg.commerce.dp.FirstWithLocale extends atg.repository.dp.FirstWithLocale implements Serializable

Class atg.commerce.dp.InventoryLevelDerivation extends atg.repository.dp.DerivationMethodImpl implements Serializable

Serialized Fields

mInventoryManager

InventoryManager mInventoryManager

mThrowExceptionOnInventoryException

boolean mThrowExceptionOnInventoryException

Class atg.commerce.dp.ParentCatalog extends atg.repository.dp.DerivationMethodImpl implements Serializable

Serialized Fields

debug

boolean debug

mParentCatalogProperty

java.lang.String mParentCatalogProperty

Class atg.commerce.dp.ProductsParentCategory extends atg.repository.dp.DerivationMethodImpl implements Serializable

Serialized Fields

debug

boolean debug

mCatalogPropertyAttribute

java.lang.String mCatalogPropertyAttribute

Package atg.commerce.expression

Class atg.commerce.expression.EvaluationException extends ContainerException implements Serializable


Package atg.commerce.fulfillment

Class atg.commerce.fulfillment.FulfillerNotFoundException extends CommerceException implements Serializable

Class atg.commerce.fulfillment.FulfillOrderFragment extends CommerceMessageImpl implements Serializable

serialVersionUID: 4736811135009880599L

Serialized Fields

mOrder

Order mOrder

mOrderId

java.lang.String mOrderId

mOrderAsXML

java.lang.String mOrderAsXML

mShippingGroupIds

java.lang.String[] mShippingGroupIds

Class atg.commerce.fulfillment.GenericAdd extends IdContainerModification implements Serializable

Serialized Fields

mContainerValue

java.io.Serializable mContainerValue

mTargetValue

java.io.Serializable mTargetValue

Class atg.commerce.fulfillment.GenericRemove extends IdContainerModification implements Serializable

Class atg.commerce.fulfillment.GenericUpdate extends IdTargetModification implements Serializable

Serialized Fields

mPropertyName

java.lang.String mPropertyName

mOriginalValue

java.io.Serializable mOriginalValue

mNewValue

java.io.Serializable mNewValue

Class atg.commerce.fulfillment.IdContainerModification extends IdTargetModification implements Serializable

Serialized Fields

mContainerType

int mContainerType

mContainerId

java.lang.String mContainerId

Class atg.commerce.fulfillment.IdTargetModification extends Modification implements Serializable

Serialized Fields

mTargetType

int mTargetType

mTargetId

java.lang.String mTargetId

Class atg.commerce.fulfillment.IllegalOrderStateException extends CommerceException implements Serializable

Class atg.commerce.fulfillment.IllegalShippingGroupStateException extends CommerceException implements Serializable

Class atg.commerce.fulfillment.InvalidShippingGroupTypeException extends CommerceException implements Serializable

Class atg.commerce.fulfillment.Modification extends java.lang.Object implements Serializable

Serialized Fields

mModificationId

java.lang.String mModificationId

mModificationType

int mModificationType

mModificationStatus

int mModificationStatus

mModificationStatusText

java.lang.String mModificationStatusText

Class atg.commerce.fulfillment.ModifyOrder extends CommerceMessageImpl implements Serializable

serialVersionUID: -3895265310478162563L

Serialized Fields

mOrderId

java.lang.String mOrderId

mOrderAsXML

java.lang.String mOrderAsXML

mModifications

Modification[] mModifications

Class atg.commerce.fulfillment.ModifyOrderNotification extends CommerceMessageImpl implements Serializable

serialVersionUID: -4797083476916958546L

Serialized Fields

mOrderId

java.lang.String mOrderId

mOrderAsXML

java.lang.String mOrderAsXML

mModifyOrderSource

java.lang.String mModifyOrderSource

mModifyOrderId

java.lang.String mModifyOrderId

mModifications

Modification[] mModifications

Class atg.commerce.fulfillment.PaymentGroupUpdate extends Modification implements Serializable

Serialized Fields

mPaymentGroupIds

java.lang.String[] mPaymentGroupIds

Class atg.commerce.fulfillment.ShippingGroupUpdate extends Modification implements Serializable

Serialized Fields

mShippingGroupIds

java.lang.String[] mShippingGroupIds

Class atg.commerce.fulfillment.SubmitOrder extends CommerceMessageImpl implements Serializable

serialVersionUID: 3702159022078665785L

Serialized Fields

mProfile

RepositoryItem mProfile

mOrder

Order mOrder

mOrderId

java.lang.String mOrderId

mOrderAsXML

java.lang.String mOrderAsXML

Class atg.commerce.fulfillment.UpdateInventoryImpl extends CommerceMessageImpl implements Serializable

serialVersionUID: 153065092690427178L

Serialized Fields

mItemIds

java.lang.String[] mItemIds

Package atg.commerce.fulfillment.scenario

Class atg.commerce.fulfillment.scenario.OrderModified extends ScenarioEvent implements Serializable

Serialized Fields

mOrder

Order mOrder

mShipItemRels

ShippingGroupCommerceItemRelationship[] mShipItemRels

mType

java.lang.String mType

mSubType

java.lang.String mSubType

Class atg.commerce.fulfillment.scenario.PaymentGroupModified extends ScenarioEvent implements Serializable

Serialized Fields

mOrder

Order mOrder

mPaymentGroups

PaymentGroup[] mPaymentGroups

mType

java.lang.String mType

mSubType

java.lang.String mSubType

Class atg.commerce.fulfillment.scenario.ScenarioEvent extends java.lang.Object implements Serializable

Serialized Fields

mId

java.lang.String mId

mProfile

RepositoryItem mProfile

mParentSessionId

java.lang.String mParentSessionId

mSessionId

java.lang.String mSessionId

mProfileId

java.lang.String mProfileId

Class atg.commerce.fulfillment.scenario.ShippingGroupModified extends ScenarioEvent implements Serializable

Serialized Fields

mOrder

Order mOrder

mShippingGroup

ShippingGroup mShippingGroup

mNewShippingGroup

ShippingGroup mNewShippingGroup

mType

java.lang.String mType

mSubType

java.lang.String mSubType

Package atg.commerce.gifts

Class atg.commerce.gifts.GiftlistHandlingInstruction extends HandlingInstructionImpl implements Serializable

Class atg.commerce.gifts.GiftlistItemNotFoundException extends CommerceException implements Serializable

Class atg.commerce.gifts.GiftObjectCreationException extends CommerceException implements Serializable

Class atg.commerce.gifts.GiftPurchased extends CommerceMessageImpl implements Serializable

serialVersionUID: 528095699650987014L

Serialized Fields

mOrder

Order mOrder

mProfile

RepositoryItem mProfile

mItem

CommerceItem mItem

Class atg.commerce.gifts.InvalidDateException extends CommerceException implements Serializable

Class atg.commerce.gifts.InvalidGiftParameterException extends CommerceException implements Serializable

Class atg.commerce.gifts.InvalidGiftQuantityException extends CommerceException implements Serializable

Class atg.commerce.gifts.InvalidGiftTypeException extends CommerceException implements Serializable


Package atg.commerce.inventory

Class atg.commerce.inventory.InventoryAvailabilityPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mInventoryManagerPath

java.lang.String mInventoryManagerPath
Nucleus path to the inventory manager


mItemListIdentifier

java.lang.String mItemListIdentifier
The property of the repository item that contains a list of RepositoryItems.


mInventoryStatus

int mInventoryStatus
The inventory status that is being checked for. This defaults to DEFAULT_INVENTORY_STATUS.

Class atg.commerce.inventory.InventoryException extends CommerceException implements Serializable

Class atg.commerce.inventory.InventoryThresholdReached extends java.lang.Object implements Serializable

Serialized Fields

mId

java.lang.String mId

mInventoryId

java.lang.String mInventoryId

mLevelPropertyName

java.lang.String mLevelPropertyName

mThresholdPropertyName

java.lang.String mThresholdPropertyName

mCurrentValue

long mCurrentValue

mThresholdValue

long mThresholdValue

Class atg.commerce.inventory.MissingInventoryItemException extends InventoryException implements Serializable


Package atg.commerce.messaging

Class atg.commerce.messaging.CommerceMessageImpl extends java.lang.Object implements Serializable

Serialized Fields

mSource

java.lang.String mSource

mId

java.lang.String mId

mUserId

java.lang.String mUserId

mOriginalSource

java.lang.String mOriginalSource

mOriginalId

java.lang.String mOriginalId

mOriginalUserId

java.lang.String mOriginalUserId

mParentSessionId

java.lang.String mParentSessionId

mSessionId

java.lang.String mSessionId

Package atg.commerce.order

Class atg.commerce.order.AuxiliaryData extends java.util.Observable implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mProductId

java.lang.String mProductId

mProductRef

java.lang.Object mProductRef

mCatalogRef

java.lang.Object mCatalogRef

Class atg.commerce.order.CommerceIdentifierComparator extends java.lang.Object implements Serializable

Class atg.commerce.order.CommerceIdentifierImpl extends java.lang.Object implements Serializable

Serialized Fields

mCommerceId

java.lang.String mCommerceId

Class atg.commerce.order.CommerceItemContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mHashmap

java.util.HashMap<K,V> mHashmap

mCatalogRefMap

java.util.HashMap<K,V> mCatalogRefMap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.CommerceItemImpl extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mPaymentGroupRelationshipContainer

PaymentGroupRelationshipContainerImpl mPaymentGroupRelationshipContainer

mAuxiliaryData

AuxiliaryData mAuxiliaryData

mShippingGroupRelationshipContainer

ShippingGroupRelationshipContainerImpl mShippingGroupRelationshipContainer

mState

int mState

mPriceInfo

ItemPriceInfo mPriceInfo

mPriceInfoRepositoryItem

MutableRepositoryItem mPriceInfoRepositoryItem

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.CommerceItemNotFoundException extends CommerceException implements Serializable

Class atg.commerce.order.CommerceItemRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.ConfigurableCommerceItem extends CommerceItemImpl implements Serializable

Serialized Fields

mCommerceItemContainer

CommerceItemContainerImpl mCommerceItemContainer

Class atg.commerce.order.CreditCard extends PaymentGroupImpl implements Serializable

Serialized Fields

mBillingAddress

Address mBillingAddress

Class atg.commerce.order.DuplicateCommerceItemException extends CommerceException implements Serializable

Class atg.commerce.order.DuplicateHandlingInstructionException extends CommerceException implements Serializable

Class atg.commerce.order.DuplicatePaymentGroupException extends CommerceException implements Serializable

Class atg.commerce.order.DuplicateRelationshipException extends CommerceException implements Serializable

Class atg.commerce.order.DuplicateShippingGroupException extends CommerceException implements Serializable

Class atg.commerce.order.ElectronicShippingGroup extends ShippingGroupImpl implements Serializable

Class atg.commerce.order.GiftCertificate extends PaymentGroupImpl implements Serializable

Class atg.commerce.order.HandlingInstructionContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.HandlingInstructionImpl extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.HandlingInstructionNotFoundException extends CommerceException implements Serializable

Class atg.commerce.order.HardgoodShippingGroup extends ShippingGroupImpl implements Serializable

Serialized Fields

mShippingAddress

Address mShippingAddress

Class atg.commerce.order.InvalidNameException extends CommerceException implements Serializable

Class atg.commerce.order.InvalidParameterException extends CommerceException implements Serializable

Class atg.commerce.order.InvalidTypeException extends CommerceException implements Serializable

Class atg.commerce.order.InvalidVersionException extends CommerceException implements Serializable

Class atg.commerce.order.ItemAddedToOrder extends ScenarioEvent implements Serializable

Serialized Fields

mId

java.lang.String mId

mOrder

Order mOrder

mCatalogRef

java.lang.Object mCatalogRef

mProduct

java.lang.Object mProduct

mCommerceItem

CommerceItem mCommerceItem

mQuantity

long mQuantity

mAmount

double mAmount

Class atg.commerce.order.ItemQuantityChanged extends ScenarioEvent implements Serializable

Serialized Fields

mId

java.lang.String mId

mOrder

Order mOrder

mCatalogRef

java.lang.Object mCatalogRef

mProduct

java.lang.Object mProduct

mCommerceItem

CommerceItem mCommerceItem

mOldQuantity

long mOldQuantity

mNewQuantity

long mNewQuantity

mAmount

double mAmount

Class atg.commerce.order.ItemRemovedFromOrder extends ScenarioEvent implements Serializable

Serialized Fields

mOrder

Order mOrder

mCatalogRef

java.lang.Object mCatalogRef

mProduct

java.lang.Object mProduct

mCommerceItem

CommerceItem mCommerceItem

mQuantity

long mQuantity

mAmount

double mAmount

Class atg.commerce.order.ItemSkuChanged extends ScenarioEvent implements Serializable

Serialized Fields

mOldSku

java.lang.String mOldSku

mId

java.lang.String mId

mOrder

Order mOrder

mCommerceItem

CommerceItem mCommerceItem

mProduct

java.lang.Object mProduct

mCatalogRef

java.lang.Object mCatalogRef

Class atg.commerce.order.ObjectCreationException extends CommerceException implements Serializable

Class atg.commerce.order.ObjectRemovalException extends CommerceException implements Serializable

Class atg.commerce.order.OrderImpl extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mVersion

int mVersion

mState

int mState

mStateAsString

java.lang.String mStateAsString
returns the Order state as a String.


mPriceInfo

OrderPriceInfo mPriceInfo

mPriceInfoRepositoryItem

MutableRepositoryItem mPriceInfoRepositoryItem

mTaxPriceInfo

TaxPriceInfo mTaxPriceInfo

mTaxPriceInfoRepositoryItem

MutableRepositoryItem mTaxPriceInfoRepositoryItem

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.OrderRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mOrderRelationship

OrderRelationship mOrderRelationship

Class atg.commerce.order.OrderSaved extends CommerceMessageImpl implements Serializable

Serialized Fields

mOrder

Order mOrder

Class atg.commerce.order.OrdersMerged extends ScenarioEvent implements Serializable

Serialized Fields

mSourceOrder

Order mSourceOrder

mDestinationOrder

Order mDestinationOrder

mSourceRemoved

boolean mSourceRemoved

Class atg.commerce.order.PaymentGroupCommerceItemRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mPaymentGroup

PaymentGroup mPaymentGroup

mCommerceItem

CommerceItem mCommerceItem

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.PaymentGroupContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.PaymentGroupImpl extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mCommerceItemRelationshipContainer

CommerceItemRelationshipContainerImpl mCommerceItemRelationshipContainer

mShippingGroupRelationshipContainer

ShippingGroupRelationshipContainerImpl mShippingGroupRelationshipContainer

mOrderRelationshipContainer

OrderRelationshipContainerImpl mOrderRelationshipContainer

mState

int mState

mAuthorizationStatus

java.util.List<E> mAuthorizationStatus

mDebitStatus

java.util.List<E> mDebitStatus

mCreditStatus

java.util.List<E> mCreditStatus

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.PaymentGroupNotFoundException extends CommerceException implements Serializable

Class atg.commerce.order.PaymentGroupOrderRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mPaymentGroup

PaymentGroup mPaymentGroup

mOrder

Order mOrder

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.PaymentGroupRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.PaymentGroupShippingGroupRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mShippingGroup

ShippingGroup mShippingGroup

mPaymentGroup

PaymentGroup mPaymentGroup

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.PaymentTypeAuthorizationException extends CommerceException implements Serializable

Class atg.commerce.order.RelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.RelationshipNotFoundException extends CommerceException implements Serializable

Class atg.commerce.order.RelationshipTypes extends java.lang.Object implements Serializable

Class atg.commerce.order.RepositoryAddress extends Address implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.RepositoryContactInfo extends ContactInfo implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.RepositoryRange extends atg.core.util.Range implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mLowBound

long mLowBound
the low end of the range


mHighBound

long mHighBound
the high end of the range

Class atg.commerce.order.RestorableOrders extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pStream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pStream)
                  throws java.io.IOException
Throws:
java.io.IOException

Class atg.commerce.order.ShippingGroupCommerceItemRelationship extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mState

int mState

mShippingGroup

ShippingGroup mShippingGroup

mCommerceItem

CommerceItem mCommerceItem

mRange

atg.core.util.Range mRange

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.ShippingGroupContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryItem

MutableRepositoryItem mRepositoryItem

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.ShippingGroupImpl extends CommerceIdentifierImpl implements Serializable

Serialized Fields

mHandlingInstructionContainer

HandlingInstructionContainerImpl mHandlingInstructionContainer

mCommerceItemRelationshipContainer

CommerceItemRelationshipContainerImpl mCommerceItemRelationshipContainer

mPaymentGroupRelationshipContainer

PaymentGroupRelationshipContainerImpl mPaymentGroupRelationshipContainer

mState

int mState

mPriceInfo

ShippingPriceInfo mPriceInfo

mPriceInfoRepositoryItem

MutableRepositoryItem mPriceInfoRepositoryItem

mSaveAllProperties

boolean mSaveAllProperties

mChanged

boolean mChanged

mChangedProperties

java.util.HashSet<E> mChangedProperties

mRepositoryItem

MutableRepositoryItem mRepositoryItem

Class atg.commerce.order.ShippingGroupNotFoundException extends CommerceException implements Serializable

Class atg.commerce.order.ShippingGroupRelationshipContainerImpl extends java.lang.Object implements Serializable

Serialized Fields

mHashmap

java.util.HashMap<K,V> mHashmap

mArray

java.util.ArrayList<E> mArray

Class atg.commerce.order.StoreCredit extends PaymentGroupImpl implements Serializable

Class atg.commerce.order.SubSkuCommerceItem extends CommerceItemImpl implements Serializable

Class atg.commerce.order.SwitchOrder extends CommerceMessageImpl implements Serializable

Serialized Fields

mOldOrder

Order mOldOrder

mNewOrder

Order mNewOrder

Package atg.commerce.order.abandoned

Class atg.commerce.order.abandoned.OrderAbandoned extends CommerceMessageImpl implements Serializable

Serialized Fields

mOrderId

java.lang.String mOrderId

mProfileId

java.lang.String mProfileId

mAbandonmentState

java.lang.String mAbandonmentState

mAmount

double mAmount

mCurrencyCode

java.lang.String mCurrencyCode

mType

java.lang.String mType

Class atg.commerce.order.abandoned.TransientOrderEvent extends CommerceMessageImpl implements Serializable

Serialized Fields

mOrderId

java.lang.String mOrderId

mProfile

RepositoryItem mProfile

mAmount

double mAmount

mCurrencyCode

java.lang.String mCurrencyCode

mSubmitted

int mSubmitted

mType

java.lang.String mType

Package atg.commerce.order.processor

Class atg.commerce.order.processor.ValidatePaymentGroupPipelineArgs extends ValidationPipelineArgs implements Serializable

Class atg.commerce.order.processor.ValidateShippingGroupPipelineArgs extends ValidationPipelineArgs implements Serializable

Class atg.commerce.order.processor.ValidationPipelineArgs extends java.util.HashMap implements Serializable

Serialized Fields

mOrderManager

OrderManager mOrderManager

Package atg.commerce.order.purchase

Class atg.commerce.order.purchase.CommerceIdentifierPaymentInfo extends java.lang.Object implements Serializable

Serialized Fields

mCommerceIdentifier

CommerceIdentifier mCommerceIdentifier

mRelationshipType

java.lang.String mRelationshipType

mPaymentMethod

java.lang.String mPaymentMethod

mAmount

double mAmount

mQuantity

long mQuantity

mSplitPaymentMethod

java.lang.String mSplitPaymentMethod

mSplitAmount

double mSplitAmount

mSplitQuantity

long mSplitQuantity

mCreditCardVerificationNumber

java.lang.String mCreditCardVerificationNumber

Class atg.commerce.order.purchase.CommerceItemPaymentInfo extends CommerceIdentifierPaymentInfo implements Serializable

Class atg.commerce.order.purchase.CommerceItemShippingInfo extends java.lang.Object implements Serializable

Serialized Fields

mCommerceItem

CommerceItem mCommerceItem

mShippingMethod

java.lang.String mShippingMethod

mShippingGroupName

java.lang.String mShippingGroupName

mRelationshipType

java.lang.String mRelationshipType

mQuantity

long mQuantity

mSplitQuantity

long mSplitQuantity

mSplitShippingGroupName

java.lang.String mSplitShippingGroupName

Class atg.commerce.order.purchase.OrderPaymentInfo extends CommerceIdentifierPaymentInfo implements Serializable

Class atg.commerce.order.purchase.PaymentGroupContainerService extends GenericService implements Serializable

Serialized Fields

mCommerceIdentifierPaymentInfoMap

java.util.Map<K,V> mCommerceIdentifierPaymentInfoMap

mPaymentGroupMap

java.util.Map<K,V> mPaymentGroupMap

mDefaultPaymentGroupName

java.lang.String mDefaultPaymentGroupName

Class atg.commerce.order.purchase.PaymentGroupInitializationException extends CommerceException implements Serializable

Class atg.commerce.order.purchase.ShippingGroupContainerService extends GenericService implements Serializable

Serialized Fields

mCommerceItemShippingInfoMap

java.util.Map<K,V> mCommerceItemShippingInfoMap

mShippingGroupMap

java.util.Map<K,V> mShippingGroupMap

mDefaultShippingGroupName

java.lang.String mDefaultShippingGroupName

Class atg.commerce.order.purchase.ShippingGroupInitializationException extends CommerceException implements Serializable

Class atg.commerce.order.purchase.ShippingGroupPaymentInfo extends CommerceIdentifierPaymentInfo implements Serializable

Class atg.commerce.order.purchase.TaxPaymentInfo extends CommerceIdentifierPaymentInfo implements Serializable


Package atg.commerce.payment

Class atg.commerce.payment.DummyTaxStatus extends java.lang.Object implements Serializable

Serialized Fields

mTransactionId

java.lang.String mTransactionId
transaction id


mTransactionSuccess

boolean mTransactionSuccess
transaction success


mErrorMessage

java.lang.String mErrorMessage
describes transaction failure


mTransactionTimestamp

java.util.Date mTransactionTimestamp
when transaction was initiated


mAmount

double mAmount
total tax amount


mCityTax

double mCityTax
city tax


mStateTax

double mStateTax
state tax


mCountyTax

double mCountyTax
county tax


mCountryTax

double mCountryTax
province tax


mDistrictTax

double mDistrictTax
district tax

Class atg.commerce.payment.PaymentException extends CommerceException implements Serializable

Serialized Fields

mFailedIds

java.util.List<E> mFailedIds

Class atg.commerce.payment.PaymentManagerAction extends Enum implements Serializable

Class atg.commerce.payment.PaymentManagerPipelineArgs extends java.util.HashMap implements Serializable


Package atg.commerce.pricing

Class atg.commerce.pricing.AmountInfo extends java.lang.Object implements Serializable

Serialized Fields

mCurrencyCode

java.lang.String mCurrencyCode
the currency code for the price that this AmountInfo represents


mAmount

double mAmount
the raw number about which this AmountInfo stores interpretive information


mDiscounted

boolean mDiscounted
Flag that states whether or not this AmountInfo has been discounted


mAdjustments

java.util.List<E> mAdjustments

mAmountIsFinal

boolean mAmountIsFinal

mClosenessQualifiers

java.util.List<E> mClosenessQualifiers

Class atg.commerce.pricing.DetailedItemPriceInfo extends AmountInfo implements Serializable

Serialized Fields

mQuantity

long mQuantity
how many of a commerceitem this object represents


mTax

double mTax

mOrderDiscountShare

double mOrderDiscountShare

mRange

atg.core.util.Range mRange

mItemPriceInfo

ItemPriceInfo mItemPriceInfo
the ItemPriceInfo to which this detailed info belongs


mQuantityAsQualifier

long mQuantityAsQualifier
the portion of this DetailedItemPriceInfo that has acted as a qualifier. Value should not be greater than the value of the amount property.

Class atg.commerce.pricing.FilteredCommerceItem extends java.lang.Object implements Serializable

Serialized Fields

mQuantityAsQualifierDetails

java.util.Map<K,V> mQuantityAsQualifierDetails
map of DetailedItemPriceInfo objects to Range objects which state which units of the details have acted as a qualifier for something


mDetailsRangesValidForTarget

java.util.Map<K,V> mDetailsRangesValidForTarget
map of DetailedItemPriceInfos to the number of each details that is available for discounting basic on the exclusion rules defined by various properties in Qualifier


mItem

CommerceItem mItem
The original CommerceItem before filtering


mQuantity

long mQuantity

Class atg.commerce.pricing.ItemPriceInfo extends AmountInfo implements Serializable

Serialized Fields

mRawTotalPrice

double mRawTotalPrice
Properties


mListPrice

double mListPrice

mSalePrice

double mSalePrice

mOnSale

java.lang.Boolean mOnSale

mOrderDiscountShare

double mOrderDiscountShare

mQuantityDiscounted

long mQuantityDiscounted

mQuantityAsQualifier

long mQuantityAsQualifier

mPriceList

RepositoryItem mPriceList

mCurrentPriceDetails

java.util.List<E> mCurrentPriceDetails
a breakdown of the current price by quantity. e.g. 3 priced this way, 4 priced this other way, etc.

Class atg.commerce.pricing.OrderPriceInfo extends AmountInfo implements Serializable

Serialized Fields

mTaxableShippingItemsSubtotalPriceInfos

java.util.Map<K,V> mTaxableShippingItemsSubtotalPriceInfos
maps a shipping group ID to a PriceInfo that contains a subtotal for only the taxable items that appear in that shipping group


mNonTaxableShippingItemsSubtotalPriceInfos

java.util.Map<K,V> mNonTaxableShippingItemsSubtotalPriceInfos
maps a shipping group ID to a PriceInfo that contains a subtotal for only the non-taxable items that appear in that shipping group


mShippingItemsSubtotalPriceInfos

java.util.Map<K,V> mShippingItemsSubtotalPriceInfos
maps a shipping group ID to a PriceInfo that contains a subtotal for only the items that appear in that shipping group


mRawSubtotal

double mRawSubtotal

mManualAdjustmentTotal

double mManualAdjustmentTotal

mTax

double mTax

mShipping

double mShipping

Class atg.commerce.pricing.PriceChanged extends java.lang.Object implements Serializable

Serialized Fields

mId

java.lang.String mId

mType

java.lang.String mType

mPriceChangeType

java.lang.String mPriceChangeType

mProfile

RepositoryItem mProfile

mOrder

Order mOrder

mRepricedObject

CommerceIdentifier mRepricedObject

mOldPrice

AmountInfo mOldPrice

mNewPrice

AmountInfo mNewPrice

Class atg.commerce.pricing.PricingAdjustment extends java.lang.Object implements Serializable

Serialized Fields

mAdjustmentDescription

java.lang.String mAdjustmentDescription
a description of the adjustment that this object recorded


mPricingModel

RepositoryItem mPricingModel

mManualPricingAdjustment

RepositoryItem mManualPricingAdjustment

mTotalAdjustment

double mTotalAdjustment

mQuantityAdjusted

long mQuantityAdjusted
the quantity that this adjustment affected

Class atg.commerce.pricing.PricingCommerceItem extends java.lang.Object implements Serializable

Serialized Fields

mShippingGroupRelationshipContainer

ShippingGroupRelationshipContainerImpl mShippingGroupRelationshipContainer

mPaymentGroupRelationshipContainer

PaymentGroupRelationshipContainerImpl mPaymentGroupRelationshipContainer

mId

java.lang.String mId

mCommerceItemClassType

java.lang.String mCommerceItemClassType

mCatalogKey

java.lang.String mCatalogKey

mCatalogId

java.lang.String mCatalogId

mCatalogRefId

java.lang.String mCatalogRefId

mQuantity

long mQuantity

mReturnedQuantity

long mReturnedQuantity

mState

int mState

mStateDetail

java.lang.String mStateDetail

mPriceInfo

ItemPriceInfo mPriceInfo

mAuxiliaryData

AuxiliaryData mAuxiliaryData

Class atg.commerce.pricing.PricingException extends CommerceException implements Serializable

Class atg.commerce.pricing.PromotionClosenessMessage extends CommerceMessageImpl implements Serializable

Serialized Fields

mClosenessQualifier

RepositoryItem mClosenessQualifier

mOrder

Order mOrder

mProfile

RepositoryItem mProfile

mType

java.lang.String mType

Class atg.commerce.pricing.ShippingPriceInfo extends AmountInfo implements Serializable

Serialized Fields

mRawShipping

double mRawShipping

Class atg.commerce.pricing.TaxPriceInfo extends AmountInfo implements Serializable

Serialized Fields

mShippingItemsTaxPriceInfos

java.util.Map<K,V> mShippingItemsTaxPriceInfos
maps a shipping group ID to a PriceInfo that contains the tax price information for only the items that appear in that shipping group


mCityTax

double mCityTax

mCountyTax

double mCountyTax

mStateTax

double mStateTax

mDistrictTax

double mDistrictTax

mCountryTax

double mCountryTax

Package atg.commerce.pricing.priceLists

Class atg.commerce.pricing.priceLists.MigrationException extends CommerceException implements Serializable

Class atg.commerce.pricing.priceLists.PriceListException extends CommerceException implements Serializable


Package atg.commerce.promotion

Class atg.commerce.promotion.DuplicatePromotionException extends atg.commerce.promotion.PromotionException implements Serializable

Class atg.commerce.promotion.PromotionConverter extends atg.scenario.xref.converter.ReferenceTargetConverterImpl implements Serializable

Class atg.commerce.promotion.PromotionException extends CommerceException implements Serializable

Serialized Fields

mErrorCode

java.lang.String mErrorCode

Class atg.commerce.promotion.PromotionGrantedMessage extends CommerceMessageImpl implements Serializable

Serialized Fields

mProfile

MutableRepositoryItem mProfile

mPromotionId

java.lang.String mPromotionId

mComment

java.lang.String mComment

Class atg.commerce.promotion.PromotionRevokedMessage extends CommerceMessageImpl implements Serializable

Serialized Fields

mProfile

RepositoryItem mProfile

mPromotionId

java.lang.String mPromotionId

mComment

java.lang.String mComment

Class atg.commerce.promotion.PromotionUsed extends CommerceMessageImpl implements Serializable

serialVersionUID: 3941937009013774456L

Serialized Fields

mOrder

Order mOrder

mProfile

RepositoryItem mProfile

mPromotion

RepositoryItem mPromotion

mDiscount

double mDiscount

Class atg.commerce.promotion.ScenarioAddedItemToOrder extends ItemAddedToOrder implements Serializable


Package atg.commerce.util

Class atg.commerce.util.NoLockNameException extends java.lang.Exception implements Serializable


Package atg.core.exception

Class atg.core.exception.BadValueException extends java.lang.Exception implements Serializable

Class atg.core.exception.ContainerException extends java.lang.Exception implements Serializable

Class atg.core.exception.ContainerRuntimeException extends java.lang.RuntimeException implements Serializable

Class atg.core.exception.ItemAlreadyExistsException extends java.lang.Exception implements Serializable

Class atg.core.exception.ItemNotFoundException extends java.lang.Exception implements Serializable

Class atg.core.exception.LimitExceededException extends java.lang.Exception implements Serializable

Class atg.core.exception.TimeoutException extends java.lang.Exception implements Serializable


Package atg.core.net

Class atg.core.net.SMTPEmailException extends java.lang.Exception implements Serializable

Class atg.core.net.SocketGetterTimeoutException extends java.io.IOException implements Serializable

Class atg.core.net.URLHammerConfig extends java.lang.Object implements Serializable

serialVersionUID: -5154189853190382949L

Serialized Fields

cookies

boolean cookies

script

boolean script

verbose

boolean verbose

pauseMillis

long pauseMillis

numThreads

int numThreads

numRequests

int numRequests

serverName

java.lang.String serverName

url

java.lang.String url

scriptPath

java.lang.String scriptPath

runningStats

boolean runningStats

sessions

java.util.Vector<E> sessions

htmlStats

java.lang.String htmlStats

randomStop

boolean randomStop

stopPercentage

int stopPercentage

substitute

boolean substitute

proxyServer

java.lang.String proxyServer

user

java.lang.String user

password

java.lang.String password

recordAllRequests

boolean recordAllRequests

maxRedirects

int maxRedirects

userHeaders

java.util.Hashtable<K,V> userHeaders

userCookies

java.util.Vector<E> userCookies

debug

boolean debug

Class atg.core.net.UrlHammerGui extends java.awt.Frame implements Serializable

Serialized Fields

mLocation

java.lang.String mLocation

mNumberOfThreads

int mNumberOfThreads

mNumberOfCalls

int mNumberOfCalls

mIsUrl

boolean mIsUrl

mIsVerbose

boolean mIsVerbose

mIsPausing

boolean mIsPausing

mIsUsingCookies

boolean mIsUsingCookies

mMillis

long mMillis

mCanceled

boolean mCanceled

mThread

java.lang.Thread mThread

Class atg.core.net.URLHammerRequest extends java.lang.Object implements Serializable

serialVersionUID: 5664934193114546563L

Serialized Fields

time

int time

sessionId

java.lang.String sessionId

method

java.lang.String method

url

java.lang.String url

statusCode

int statusCode

stopped

boolean stopped

dataLength

int dataLength

Class atg.core.net.URLHammerStats extends java.lang.Object implements Serializable

serialVersionUID: 6234994987894509718L

Serialized Fields

summary

atg.core.net.SummaryStats summary

errorStats

atg.core.util.IntHashtable errorStats

perURLStats

java.util.Dictionary<K,V> perURLStats

sessionSummary

java.util.Dictionary<K,V> sessionSummary

totalTime

long totalTime

dataLength

int dataLength

mIOFailures

java.util.Vector<E> mIOFailures

mOtherFailures

java.util.Vector<E> mOtherFailures

mAllRequests

java.util.Dictionary<K,V> mAllRequests

mConfig

atg.core.net.URLHammerConfig mConfig

Class atg.core.net.URLInfo extends java.lang.Object implements Serializable

serialVersionUID: -2673585288245996277L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

URLobject

java.net.URL URLobject

url

java.lang.String url

pauseMillis

int pauseMillis

postData

java.lang.String postData

sessionId

java.lang.String sessionId

method

java.lang.String method

Package atg.core.util

Class atg.core.util.Address extends java.util.Observable implements Serializable

Serialized Fields

mPrefix

java.lang.String mPrefix

mFirstName

java.lang.String mFirstName

mMiddleName

java.lang.String mMiddleName

mLastName

java.lang.String mLastName

mSuffix

java.lang.String mSuffix

mAddress1

java.lang.String mAddress1

mAddress2

java.lang.String mAddress2

mAddress3

java.lang.String mAddress3

mCity

java.lang.String mCity

mState

java.lang.String mState

mCounty

java.lang.String mCounty

mPostalCode

java.lang.String mPostalCode

mCountry

java.lang.String mCountry

mOwnerId

java.lang.String mOwnerId

Class atg.core.util.ArrayEnumeration extends java.lang.Object implements Serializable

Serialized Fields

mArray

java.lang.Object[] mArray

mCurrentElement

int mCurrentElement

mArrayLength

int mArrayLength

mOffset

int mOffset

Class atg.core.util.ArrayIterator extends java.lang.Object implements Serializable

Serialized Fields

mArray

java.lang.Object[] mArray

mCurrentElement

int mCurrentElement

mArrayLength

int mArrayLength

mOffset

int mOffset

Class atg.core.util.BadScheduleException extends java.lang.Exception implements Serializable

Class atg.core.util.BooleanVector extends java.lang.Object implements Serializable

serialVersionUID: 4160534196563879066L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

boolean[] mElementData

mElementCount

int mElementCount

Class atg.core.util.ByteVector extends java.lang.Object implements Serializable

serialVersionUID: -2810860047095252876L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

byte[] mElementData

mElementCount

int mElementCount

Class atg.core.util.CaseInsensitiveHashtable extends atg.core.util.UnsyncCaseInsensitiveHashtable implements Serializable

Class atg.core.util.CharVector extends java.lang.Object implements Serializable

serialVersionUID: -532635165068180081L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

char[] mElementData

mElementCount

int mElementCount

Class atg.core.util.ClassAlias extends java.lang.Object implements Serializable

serialVersionUID: -4378465812696387872L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mClassName

java.lang.String mClassName

Class atg.core.util.CollectionWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.Collection<E> mWrapped

mWrapperUnwrapper

atg.core.util.WrapperUnwrapper mWrapperUnwrapper

Class atg.core.util.ContactInfo extends Address implements Serializable

Serialized Fields

mJobTitle

java.lang.String mJobTitle

mCompanyName

java.lang.String mCompanyName

mPhoneNumber

java.lang.String mPhoneNumber

mFaxNumber

java.lang.String mFaxNumber

mEmail

java.lang.String mEmail

Class atg.core.util.DoubleVector extends java.lang.Object implements Serializable

serialVersionUID: -6785213366829787107L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

double[] mElementData

mElementCount

int mElementCount

Class atg.core.util.EmptyQueueException extends java.lang.Exception implements Serializable

Class atg.core.util.Enum extends java.lang.Object implements Serializable

serialVersionUID: 6216196112212902345L

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
This allows us to read serialized Enum objects without creating new instances. Otherwise == tests wouldn't work.

Throws:
java.io.ObjectStreamException
Serialized Fields

mOrdinal

int mOrdinal
Ordinal is used by the Comparable methods to determine the ordering. The ordering will be the order of instantiation.

Class atg.core.util.FixedStack extends java.util.Stack implements Serializable

serialVersionUID: -4455332527996934426L

Serialized Fields

mMaxSize

int mMaxSize

Class atg.core.util.FloatVector extends java.lang.Object implements Serializable

serialVersionUID: 2630244556499785609L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

float[] mElementData

mElementCount

int mElementCount

Class atg.core.util.HackableUnsynchronizedHashtable extends java.util.Dictionary implements Serializable

serialVersionUID: -4491829238074366927L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mThreshold

int mThreshold

mLoadFactor

float mLoadFactor

mModCount

int mModCount

Class atg.core.util.History extends java.util.Vector implements Serializable

serialVersionUID: -8731275163358922163L

Serialized Fields

_current

int _current

Class atg.core.util.IntHashtable extends java.lang.Object implements Serializable

serialVersionUID: 4542821173982882853L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mThreshold

int mThreshold

mLoadFactor

float mLoadFactor

Class atg.core.util.IntVector extends java.lang.Object implements Serializable

serialVersionUID: 7290478633007481156L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

int[] mElementData

mElementCount

int mElementCount

Class atg.core.util.IteratorWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.Iterator<E> mWrapped

mWrapperUnwrapper

atg.core.util.WrapperUnwrapper mWrapperUnwrapper

Class atg.core.util.ListIteratorWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.ListIterator<E> mWrapped

mWrapperUnwrapper

atg.core.util.WrapperUnwrapper mWrapperUnwrapper

Class atg.core.util.ListWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.List<E> mWrapped

mWrapperUnwrapper

atg.core.util.WrapperUnwrapper mWrapperUnwrapper

Class atg.core.util.LongVector extends java.lang.Object implements Serializable

serialVersionUID: -3397005944217703268L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

long[] mElementData

mElementCount

int mElementCount

Class atg.core.util.MapEntryWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.Map.Entry<K,V> mWrapped

mKeyWrapperUnwrapper

atg.core.util.WrapperUnwrapper mKeyWrapperUnwrapper

mValueWrapperUnwrapper

atg.core.util.WrapperUnwrapper mValueWrapperUnwrapper

Class atg.core.util.MapWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.Map<K,V> mWrapped

mKeyWrapperUnwrapper

atg.core.util.WrapperUnwrapper mKeyWrapperUnwrapper

mValueWrapperUnwrapper

atg.core.util.WrapperUnwrapper mValueWrapperUnwrapper

Class atg.core.util.MutableByte extends java.lang.Number implements Serializable

serialVersionUID: -508346629877592605L

Serialized Fields

mValue

byte mValue

Class atg.core.util.MutableDouble extends java.lang.Number implements Serializable

serialVersionUID: -4389159745482975394L

Serialized Fields

mValue

double mValue

Class atg.core.util.MutableFloat extends java.lang.Number implements Serializable

serialVersionUID: 5744079816010719174L

Serialized Fields

mValue

float mValue

Class atg.core.util.MutableInteger extends java.lang.Number implements Serializable

serialVersionUID: 5714707366235738507L

Serialized Fields

mValue

int mValue

Class atg.core.util.MutableLong extends java.lang.Number implements Serializable

serialVersionUID: 7866419547161825347L

Serialized Fields

mValue

long mValue

Class atg.core.util.NotSerializableArrayList extends java.util.ArrayList implements Serializable

Class atg.core.util.NotSerializableHashtable extends java.util.Hashtable implements Serializable

Class atg.core.util.NotSortableException extends java.lang.Exception implements Serializable

Class atg.core.util.Null extends java.lang.Object implements Serializable

serialVersionUID: -4569573307697221205L

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class atg.core.util.ObjectPoolException extends java.lang.Exception implements Serializable

Class atg.core.util.ObservableHashMap extends java.util.Observable implements Serializable

Serialized Fields

mHashMap

java.util.HashMap<K,V> mHashMap

mUpdateArg

java.lang.String mUpdateArg

Class atg.core.util.OrderedHashtable extends java.util.Hashtable implements Serializable

serialVersionUID: -8251686990659137962L

Serialized Fields

mOrderByAdd

boolean mOrderByAdd

mEnumerateOldestToNewest

boolean mEnumerateOldestToNewest

mStart

atg.core.util.OrderedHashtable.OrderedHashtableEntry mStart

mEnd

atg.core.util.OrderedHashtable.OrderedHashtableEntry mEnd

Class atg.core.util.OrderedHashtable.OrderedHashtableEntry extends java.lang.Object implements Serializable

serialVersionUID: -1582529967901332129L

Serialized Fields

mKey

java.lang.Object mKey

mValue

java.lang.Object mValue

mPrev

atg.core.util.OrderedHashtable.OrderedHashtableEntry mPrev

mNext

atg.core.util.OrderedHashtable.OrderedHashtableEntry mNext

Class atg.core.util.OrderedProperties extends java.util.Properties implements Serializable

serialVersionUID: -166738125181317724L

Serialized Fields

mOrderByAdd

boolean mOrderByAdd

mEnumerateOldestToNewest

boolean mEnumerateOldestToNewest

mStart

atg.core.util.OrderedProperties.OrderedHashtableEntry mStart

mEnd

atg.core.util.OrderedProperties.OrderedHashtableEntry mEnd

Class atg.core.util.ProbingHashtable extends java.util.Dictionary implements Serializable

serialVersionUID: -4356751174990529367L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mLoadFactor

float mLoadFactor

mThreshold

int mThreshold

mCount

int mCount

Class atg.core.util.Range extends java.lang.Object implements Serializable

Serialized Fields

mLowBound

long mLowBound

mHighBound

long mHighBound

Class atg.core.util.RelativeDate extends java.util.Date implements Serializable

serialVersionUID: 1732171918228590711L

Serialized Fields

mOffsetSynchronizer

java.lang.Object mOffsetSynchronizer

mTense

int mTense

mOffsets

java.util.Map<K,V> mOffsets

mLocale

java.util.Locale mLocale

mCalendarClass

java.lang.Class<T> mCalendarClass

Class atg.core.util.SetWrapper extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

java.util.Set<E> mWrapped

mWrapperUnwrapper

atg.core.util.WrapperUnwrapper mWrapperUnwrapper

Class atg.core.util.ShortVector extends java.lang.Object implements Serializable

serialVersionUID: 6562584975461460992L

Serialized Fields

mCapacityIncrement

int mCapacityIncrement

mElementData

short[] mElementData

mElementCount

int mElementCount

Class atg.core.util.SoftUnsynchronizedHashtable extends atg.core.util.UnsynchronizedHashtable implements Serializable

Serialized Fields

mReferenceQueue

java.lang.ref.ReferenceQueue<T> mReferenceQueue

Class atg.core.util.SortedVector extends java.util.Vector implements Serializable

serialVersionUID: -7756454362677577904L

Class atg.core.util.StringList extends java.lang.Object implements Serializable

serialVersionUID: -1158097736758536091L

Serialized Fields

mList

java.lang.String[] mList

Class atg.core.util.SynchronizedCollection extends java.lang.Object implements Serializable

Serialized Fields

c

java.util.Collection<E> c

mutex

java.lang.Object mutex

Class atg.core.util.SynchronizedHashMap extends java.util.HashMap implements Serializable

serialVersionUID: 1978198479659022715L

Serialized Fields

mutex

java.lang.Object mutex

Class atg.core.util.SynchronizedSet extends atg.core.util.SynchronizedCollection implements Serializable

Class atg.core.util.SynchronizedWeakHashMap extends java.util.HashMap implements Serializable

serialVersionUID: 1978198479659022715L

Serialized Fields

mWrappedWeakHashMap

java.util.WeakHashMap<K,V> mWrappedWeakHashMap

mutex

java.lang.Object mutex

Class atg.core.util.TwoDigitYearException extends java.lang.IllegalArgumentException implements Serializable

Serialized Fields

mCalculatedDate

java.util.Date mCalculatedDate

Class atg.core.util.UnsyncCaseInsensitiveHashtable extends atg.core.util.UnsynchronizedHashtable implements Serializable

Class atg.core.util.UnsynchronizedHashtable extends java.util.Dictionary implements Serializable

serialVersionUID: -4491829238074366927L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mThreshold

int mThreshold

mLoadFactor

float mLoadFactor

Package atg.deployment

Class atg.deployment.CheckpointException extends java.lang.Exception implements Serializable

Class atg.deployment.DistributedDeploymentException extends ContainerException implements Serializable


Package atg.deployment.common

Class atg.deployment.common.Status extends java.lang.Object implements Serializable

serialVersionUID: -8158873196684222480L

Serialized Fields

mStateChanged

boolean mStateChanged
The state change flag for event firing.


mClusterStatus

ClusterStatus mClusterStatus
property: clusterStatus


mLastDeployedClusterID

java.lang.String mLastDeployedClusterID
property: LastDeployedClusterID


mTarget

java.lang.String mTarget
property: target


mSwitchable

boolean mSwitchable
property: switchable


mSwitchablePaths

java.lang.String[] mSwitchablePaths
property: switchablePaths


mLiveDatastores

java.lang.String[] mLiveDatastores
property: liveDatastores


mState

int mState
property: state


mStateTimestamp

long mStateTimestamp
property: stateTimestamp


mPreviousState

int mPreviousState
property: previousState


mAssetDestinations

java.util.Map<K,V> mAssetDestinations
property: assetDestinations


mFailureMessages

java.util.Collection<E> mFailureMessages
property: failureMessages


mErrorMsgResourceKey

java.lang.String mErrorMsgResourceKey
property: errorMsgResourceKey


mErrorMsgResourceArguments

java.lang.Object[] mErrorMsgResourceArguments
property: errorMsgResourceArguments


mErrorCausedByException

java.lang.Throwable mErrorCausedByException
property: errorCausedByException


mUseAgentErrorMsgResourceKey

boolean mUseAgentErrorMsgResourceKey
property: useAgentErrorMsgResourceKey


mAffectedItemTypes

java.util.Map<K,V> mAffectedItemTypes
property: affectedItemTypes


mDeploymentID

java.lang.String mDeploymentID
property: deploymentID


mDeploymentBeginTimestamp

long mDeploymentBeginTimestamp
property: deploymentBeginTimestamp


mDeploymentLastBeginTimestamp

long mDeploymentLastBeginTimestamp
property: deploymentLastBeginTimestamp


mDeploymentLastExecutionTime

long mDeploymentLastExecutionTime
property: deploymentLastExecutionTime


mDeploymentTotalExecutionTime

long mDeploymentTotalExecutionTime
property: deploymentTotalExecutionTime


mDeploymentType

int mDeploymentType
property: deploymentType


mDeploymentMode

int mDeploymentMode
property: deploymentMode


mDeploymentRevert

boolean mDeploymentRevert
property: deploymentRevert


mDeploymentServer

java.lang.String mDeploymentServer
property: deploymentServer


mDeploymentCreateInitiator

java.lang.String mDeploymentCreateInitiator
property: deploymentCreateInitiator


mDeploymentStopInitiator

java.lang.String mDeploymentStopInitiator
property: deploymentStopInitiator


mDeploymentDeleteInitiator

java.lang.String mDeploymentDeleteInitiator
property: deploymentDeleteInitiator


mDeploymentLiveDataStore

java.lang.String mDeploymentLiveDataStore
property: deploymentLiveDataStore


mDeploymentCurrentDataStore

java.lang.String mDeploymentCurrentDataStore
property: deploymentCurrentDataStore


mDeploymentAgentInactiveDataStore

java.lang.String mDeploymentAgentInactiveDataStore
property: deploymentAgentInactiveDataStore


mDeploymentManifestID

java.lang.String mDeploymentManifestID
property: deploymentManifestID


mDeploymentCommitted

boolean mDeploymentCommitted
property: deploymentCommitted


mDeploymentSwitched

boolean mDeploymentSwitched
property: deploymentSwitched


mDeploymentTargetSwitched

boolean mDeploymentTargetSwitched
property: deploymentTargetSwitched


mDeploymentRollback

boolean mDeploymentRollback
property: deploymentRollback


mDeploymentRollbackInitiator

java.lang.String mDeploymentRollbackInitiator
property: deploymentRollbackInitiator


mDeploymentRollbackManifestID

java.lang.String mDeploymentRollbackManifestID
property: deploymentRollbackManifestID


mDeploymentFirstPass

boolean mDeploymentFirstPass
property: deploymentFirstPass


mDeploymentAgentLocalPort

int mDeploymentAgentLocalPort
property: deploymentAgentLocalPort


mDeploymentAgentSwitchableVFS

java.util.Collection<E> mDeploymentAgentSwitchableVFS
property: deploymentAgentVFSSwitchable


mDeploymentStrictFileOps

int mDeploymentStrictFileOps
property: deploymentStrictFileOps


mDeploymentStrictRepoOps

int mDeploymentStrictRepoOps
property: deploymentStrictRepoOps


mLastCompletedStage

int mLastCompletedStage
property: lastCompletedStage


mTargetSnapshotID

java.lang.String mTargetSnapshotID
property: targetSnapshotID


mApplyCursor

ApplyCursor mApplyCursor
property: applyCursor


mBranchCreated

boolean mBranchCreated
Flags the deployment associated with this status as having created a branch. Deployments need to know if a branch has been created as some projects must be handled special in such cases. N.B. This is used by the CA server only.


mDeploymentMerged

boolean mDeploymentMerged
Flags the deployment associated with this status as being merged, setting the deploymentMerged property to true and writing out the Status. NOTE: This method differs from rollback and switched in that there should be no truly public accessor for it. We don't want to explain target branching so we don't want to say anything about merging.

Class atg.deployment.common.Status.FailureMessage extends java.lang.Object implements Serializable

Serialized Fields

mMessage

java.lang.String mMessage
property: message


mStackTrace

java.lang.String mStackTrace
property: stackTrace


mFailureTime

java.util.Date mFailureTime
property: failureTime


mSeverity

java.lang.String mSeverity
property: severity


mAction

java.lang.String mAction
property: action


mItemDesc

java.lang.String mItemDesc
property: itemDesc


mItemId

java.lang.String mItemId
property: itemId


mFileId

java.lang.String mFileId
property: fileId


mFilePath

java.lang.String mFilePath
property: filePath


Package atg.deployment.file

Class atg.deployment.file.DeploymentSourceException extends atg.deployment.DistributedDeploymentException implements Serializable

Serialized Fields

mErrorLevel

int mErrorLevel

mErrorCode

java.lang.String mErrorCode

mStackTracePrint

java.lang.String mStackTracePrint

Class atg.deployment.file.DeploymentTargetException extends ContainerException implements Serializable

Serialized Fields

mErrorLevel

int mErrorLevel

mErrorCode

java.lang.String mErrorCode

mStackTracePrint

java.lang.String mStackTracePrint

Package atg.deployment.server.messaging

Class atg.deployment.server.messaging.DeploymentMessage extends PublishingMessage implements Serializable

Serialized Fields

mTargetId

java.lang.String mTargetId

Class atg.deployment.server.messaging.DeploymentStatusMessage extends DeploymentMessage implements Serializable

Serialized Fields

mStatus

int mStatus

Package atg.distributor

Class atg.distributor.DistributorPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mContentKey

java.lang.String mContentKey

mDebug

boolean mDebug

Class atg.distributor.ServerConnectionException extends java.lang.Exception implements Serializable

Serialized Fields

mSourceExceptions

java.lang.Throwable[] mSourceExceptions

Package atg.dms.patchbay

Class atg.dms.patchbay.InputDestinationConsumer.MaxErrorsReachedException extends java.lang.Exception implements Serializable

Class atg.dms.patchbay.MessageTypeImpl extends java.lang.Object implements Serializable

Serialized Fields

mJMSType

java.lang.String mJMSType

mBeanInfo

DynamicBeanInfo mBeanInfo

mMessageContext

java.lang.String mMessageContext

mDisplayName

java.lang.String mDisplayName

mDisplayNameResource

java.lang.String mDisplayNameResource

mDescription

java.lang.String mDescription

mDescriptionResource

java.lang.String mDescriptionResource

mResourceBundle

java.lang.String mResourceBundle

mHidden

boolean mHidden

mExpert

boolean mExpert

mClassName

java.lang.String mClassName

Class atg.dms.patchbay.PatchBayServiceAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mManager

atg.dms.patchbay.PatchBayManager mManager

Package atg.droplet

Class atg.droplet.AnchorTag extends EventSender implements Serializable

Serialized Fields

mAnchorId

java.lang.String mAnchorId
This is a unique id used to represent this anchor tag


mPropertyPath

java.lang.String mPropertyPath

mName

java.lang.String mName
Anchor's name attribute


mHref

java.lang.String mHref

mHrefList

java.util.Set<E> mHrefList
The listing of anchor's href


mPathNames

java.lang.String[] mPathNames
The path names of the entries


mPathDims

int[][] mPathDims
The list of dimensions for each entry


mConverter

TagConverter mConverter
The converter itself (or null if we aren't using one)


mConverterArgs

java.util.Properties mConverterArgs
The arguments to pass to the specified converter


mRequiresSessionConfirmation

boolean mRequiresSessionConfirmation

mDropletEventServlet

DropletEventServlet mDropletEventServlet
The droplet event servlet.

Class atg.droplet.ArrayElementParamDescriptor extends DynamicParamDescriptor implements Serializable

serialVersionUID: 8017425086012386443L

Serialized Fields

mArrayParamName

java.lang.String mArrayParamName

Class atg.droplet.ArrayObjectTypeInfo extends ObjectTypeInfo implements Serializable

serialVersionUID: 1735781766615703615L

Serialized Fields

mComponentInfo

ObjectTypeInfo mComponentInfo

Class atg.droplet.ArrayOfBeanPathParamDescriptor extends DynamicParamDescriptor implements Serializable

serialVersionUID: 4286501863518302752L

Serialized Fields

mBeanPath

java.lang.String mBeanPath

Class atg.droplet.ArrayOfBeanTyperParamDescriptor extends DynamicParamDescriptor implements Serializable

serialVersionUID: -7709809626773712001L

Serialized Fields

mBeanTyperParamName

java.lang.String mBeanTyperParamName

Class atg.droplet.BeanObjectTypeInfo extends ObjectTypeInfo implements Serializable

serialVersionUID: 3371145100461789074L

Serialized Fields

mBeanInfo

DynamicBeanInfo mBeanInfo

mClassAlias

atg.core.util.ClassAlias mClassAlias

mPropertyDescriptor

DynamicPropertyDescriptor mPropertyDescriptor

Class atg.droplet.BeanTyperParamDescriptor extends DynamicParamDescriptor implements Serializable

serialVersionUID: -5867168181488915509L

Serialized Fields

mBeanTyperParamName

java.lang.String mBeanTyperParamName

Class atg.droplet.ClassObjectTypeInfo extends ObjectTypeInfo implements Serializable

serialVersionUID: 7822783065599658307L

Serialized Fields

mClassAlias

atg.core.util.ClassAlias mClassAlias

Class atg.droplet.ComplexTag extends Tag implements Serializable

Serialized Fields

mContent

java.util.Vector<E> mContent

Class atg.droplet.DropletException extends javax.servlet.ServletException implements Serializable

Serialized Fields

mErrorCode

java.lang.String mErrorCode
The message code representing the error. If it is not set, we return the name of the class of this exception

Class atg.droplet.DropletFormException extends DropletException implements Serializable

Serialized Fields

mPropertyPath

java.lang.String mPropertyPath

Class atg.droplet.DropletImports extends java.lang.Object implements Serializable

Serialized Fields

mDropletComponents

java.util.Vector<E> mDropletComponents
List of DropletComponents

Class atg.droplet.DynamicParamDescriptor extends ParamDescriptor implements Serializable

serialVersionUID: -2458315552926176035L

Class atg.droplet.EventSender extends ComplexTag implements Serializable

Serialized Fields

mLogger

ApplicationLogging mLogger

mReportDropletExceptions

boolean mReportDropletExceptions

Class atg.droplet.FormEventReceiver extends Tag implements Serializable

Serialized Fields

mPropertyPath

java.lang.String mPropertyPath
The path name of the property to associate with this tag


mPathNames

java.lang.String[] mPathNames
The path names of the entries


mPathDims

int[][] mPathDims
The list of dimensions for each entry


mIsImage

boolean mIsImage
true if this is an image input tag


mName

java.lang.String mName
The value of the name field for this tag (the id to use for this tag)


mDefault

java.lang.String mDefault
The default value to use if the value is not specified in the request


mSubmitValue

java.lang.String mSubmitValue
The submit value to use for submit + image tags in place of the regular value


mMayHaveSubmitValue

boolean mMayHaveSubmitValue
True if any instance of this tag has had a submit value


mType

java.lang.String mType
The type of the tag


mPriority

int mPriority
The priority of this handler which determines event delivery order


mConverter

TagConverter mConverter

mConverterArgs

java.util.Properties mConverterArgs

Class atg.droplet.FormHashtable extends java.util.Hashtable implements Serializable

serialVersionUID: -6910707286050277127L

Class atg.droplet.FormTag extends EventSender implements Serializable

Serialized Fields

mFormId

java.lang.String mFormId
A unique string name to use for identifying this form


mSyncPath

java.lang.String mSyncPath
If not null, the path name of a component to synchronize on before delivering form arguments


mServlet

DropletEventServlet mServlet

mFormEventReceivers

java.util.Dictionary<K,V> mFormEventReceivers
A hashtable that maps property names to FormEventReceiverss


mNeedsEvents

boolean mNeedsEvents
True if this form needs to handle events


mTagsIndex

java.util.Vector<E> mTagsIndex
A vector that stores FormEventReceivers in the order in which they were added.


mTagOrder

atg.droplet.SortedTags mTagOrder
A list of the hash table keys of the FormEventReceivers stored If null, the mFormEventReceivers list is the order to use.


mActionURL

java.util.Set<E> mActionURL
The listing of action


mAction

java.lang.String mAction

mEncType

java.lang.String mEncType

mMethod

java.lang.String mMethod

mRequiresSessionConfirmation

boolean mRequiresSessionConfirmation

Class atg.droplet.IdentityParamDescriptor extends DynamicParamDescriptor implements Serializable

serialVersionUID: 8017425086012386443L

Serialized Fields

mParamName

java.lang.String mParamName

Class atg.droplet.InputTag extends FormEventReceiver implements Serializable

Serialized Fields

mSize

int mSize

mType

java.lang.String mType

mSrc

java.lang.String mSrc

mValue

java.lang.String mValue

mChecked

boolean mChecked

mMaxLength

int mMaxLength

mAlign

java.lang.String mAlign

Class atg.droplet.ObjectTypeInfo extends java.lang.Object implements Serializable

serialVersionUID: -2138248690022606561L

Class atg.droplet.ParamDescriptor extends SerializableFeatureDescriptor implements Serializable

serialVersionUID: 4943852733240406323L

Serialized Fields

mOptional

boolean mOptional
True if this parameter is optional


mLocal

boolean mLocal
True if this parameter is local


mParamClass

atg.core.util.ClassAlias mParamClass
Class or interface of this param, if specified


mRenderParamDescriptors

ParamDescriptor[] mRenderParamDescriptors
Set of parameters required by an OPARAM, if this is one.

Class atg.droplet.Tag extends javax.servlet.GenericServlet implements Serializable

Serialized Fields

mAttributes

java.util.Dictionary<K,V> mAttributes
The set of attributes defined for this tag


mForm

FormTag mForm
The current form that this tag is in (if any)


mImports

DropletImports mImports
The current imports for this tag


mParentTag

ComplexTag mParentTag
The tag whose content encloses this tag

Class atg.droplet.TagConversionException extends javax.servlet.ServletException implements Serializable

Serialized Fields

mRootCause

java.lang.Throwable mRootCause
The root exception that caused this exception (or null)


mErrorCode

java.lang.String mErrorCode

Package atg.droplet.sql

Class atg.droplet.sql.DictionaryParameterResolver extends java.util.Hashtable implements Serializable

serialVersionUID: 1203480431937086211L

Serialized Fields

mRequest

DynamoHttpServletRequest mRequest

Package atg.dtm

Class atg.dtm.RecoverableXAResource extends java.lang.Object implements Serializable

Serialized Fields

mSerializableXAResource

javax.transaction.xa.XAResource mSerializableXAResource

Class atg.dtm.TransactionDemarcationException extends ContainerException implements Serializable


Package atg.epub

Class atg.epub.PublishingException extends java.lang.Exception implements Serializable

Serialized Fields

mErrorCode

java.lang.String mErrorCode
the associated error code for this message. Currently for exceptions which report codes this is the corresponding resource bundle key.


mResourceBundleName

java.lang.String mResourceBundleName
property: resourceBundleName


mResourceKey

java.lang.String mResourceKey
property: resourceKey


mResourceParameters

java.lang.Object[] mResourceParameters
property: resourceParameters


Package atg.epub.messaging

Class atg.epub.messaging.PublishingMessage extends java.lang.Object implements Serializable

Serialized Fields

mProcessId

java.lang.String mProcessId

mProjectId

java.lang.String mProjectId

Package atg.epub.project

Class atg.epub.project.DeploymentLogEnumDeploymentMode extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

mTag

java.lang.String mTag

Class atg.epub.project.DeploymentLogEnumDeploymentType extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

mTag

java.lang.String mTag

Class atg.epub.project.DeploymentLogEnumStatus extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

mTag

java.lang.String mTag

Class atg.epub.project.InvalidAssetException extends PublishingException implements Serializable

Class atg.epub.project.ProcessEnumStatus extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

mTag

java.lang.String mTag

Class atg.epub.project.ProjectEnumStatus extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

mTag

java.lang.String mTag

Class atg.epub.project.ProjectException extends ContainerException implements Serializable

Class atg.epub.project.PublishingUnavailableException extends atg.epub.project.ProjectException implements Serializable

Class atg.epub.project.TransportDefEnumTransportType extends java.lang.Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException
Serialized Fields

mTag

java.lang.String mTag

Package atg.epub.pws.taglib

Class atg.epub.pws.taglib.EscapeHTMLTextTag extends atg.web.tagsupport.PageVariableTagSupport implements Serializable

Serialized Fields

mText

java.lang.String mText

mMaxLength

int mMaxLength

mTrimmed

boolean mTrimmed

mAppendedText

java.lang.String mAppendedText

mEscapedText

java.lang.String mEscapedText

Class atg.epub.pws.taglib.GetAssignableUsersTag extends atg.web.tagsupport.PageVariableTagSupport implements Serializable

Serialized Fields

mUsers

java.util.TreeSet<E> mUsers

mTaskDescriptor

TaskDescriptor mTaskDescriptor

mIncludeAccUsers

boolean mIncludeAccUsers

Class atg.epub.pws.taglib.GetProjectTag extends atg.web.tagsupport.PageVariableTagSupport implements Serializable

Serialized Fields

mProjectId

java.lang.String mProjectId

Class atg.epub.pws.taglib.GetVersionedAssetTypesTag extends atg.web.tagsupport.PageVariableTagSupport implements Serializable


Package atg.integrations

Class atg.integrations.CommandInvocationException extends ContainerException implements Serializable

Class atg.integrations.CommandTimeoutException extends CommandInvocationException implements Serializable

Class atg.integrations.InvalidInputException extends CommandInvocationException implements Serializable


Package atg.integrations.cybercash

Class atg.integrations.cybercash.CyberCashException extends java.lang.Exception implements Serializable

Class atg.integrations.cybercash.CyberCashStatus extends AuthorizationAddressVerificationStatus implements Serializable

Serialized Fields

mTransactionId

java.lang.String mTransactionId
A unique transaction Id returned from the payment system


mAmount

double mAmount
This property represents the amount that the transaction represents.


mTransactionSuccess

boolean mTransactionSuccess
indicates if the transaction succeeded or failed


mErrorMessage

java.lang.String mErrorMessage
A message describing the transaction failure


mTransactionTimestamp

java.util.Date mTransactionTimestamp
Date when the transaction is initiated


mAuthorizationExpiration

java.util.Date mAuthorizationExpiration
Authorization expiration date


mAvsCode

java.lang.String mAvsCode
Address Verification Result returned from authorization


mAvsDescriptiveResult

java.lang.String mAvsDescriptiveResult
A full descriptive address verification result message


mValues

java.util.Dictionary<K,V> mValues

mStatus

int mStatus

mLocation

int mLocation

mErrorCode

java.lang.String mErrorCode

Package atg.integrations.cybersource

Class atg.integrations.cybersource.CyberSourceException extends com.cybersource.ics.base.exception.ICSException implements Serializable

Class atg.integrations.cybersource.CyberSourceStatus extends AuthorizationAddressVerificationStatus implements Serializable

Serialized Fields

mValues

com.cybersource.ics.base.message.ICSReply mValues

mAmount

double mAmount

mTransactionId

java.lang.String mTransactionId

mRequestToken

java.lang.String mRequestToken

mTransactionSuccess

boolean mTransactionSuccess

mErrorMessage

java.lang.String mErrorMessage

mTransactionTimestamp

java.util.Date mTransactionTimestamp

mAuthorizationExpiration

java.util.Date mAuthorizationExpiration

mAvsCode

java.lang.String mAvsCode
Address Verification Result returned from authorization


mAvsDescriptiveResult

java.lang.String mAvsDescriptiveResult
A full descriptive address verification result message


mCityTax

double mCityTax

mStateTax

double mStateTax

mCountyTax

double mCountyTax

mDistrictTax

double mDistrictTax

mCountryTax

double mCountryTax

Package atg.integrations.taxware

Class atg.integrations.taxware.BillingShipping extends GenericAddressVerificationInfo implements Serializable

Serialized Fields

mUseBillAddress

boolean mUseBillAddress

Class atg.integrations.taxware.TaxwareCriticalException extends TaxwareException implements Serializable

Class atg.integrations.taxware.TaxwareException extends java.lang.Exception implements Serializable

Class atg.integrations.taxware.TaxwareMinorException extends TaxwareException implements Serializable

Class atg.integrations.taxware.TaxWareStatus extends java.lang.Object implements Serializable

Serialized Fields

mTransactionId

java.lang.String mTransactionId

mTransactionSuccess

boolean mTransactionSuccess

mErrorMessage

java.lang.String mErrorMessage

mTransactionTimestamp

java.util.Date mTransactionTimestamp

mAmount

double mAmount

mCityTax

double mCityTax

mStateTax

double mStateTax

mCountyTax

double mCountyTax

mDistrictTax

double mDistrictTax

mCountryTax

double mCountryTax

Class atg.integrations.taxware.VeraZipOrderImpl extends atg.integrations.taxware.BillingShipping implements Serializable

Serialized Fields

log

ApplicationLogging log

mZipResultArray

ZipResult[] mZipResultArray
The zip result returned from verazip.


mZipIndexArray

int[] mZipIndexArray
The index into the array associated with the zip result.


mZipErrorString

java.lang.String mZipErrorString

mZipError

boolean mZipError

Package atg.markers

Class atg.markers.InvalidMarkerException extends MarkerException implements Serializable

Class atg.markers.MarkerAddedEventMessage extends MarkerEventMessage implements Serializable

Serialized Fields

mMarkerAddedData

MarkerData mMarkerAddedData

Class atg.markers.MarkerData extends java.lang.Object implements Serializable

Serialized Fields

mKey

java.lang.String mKey

mValue

java.lang.String mValue

mData

java.lang.String mData

mMarkerItemId

java.lang.String mMarkerItemId

mMarkerItemType

java.lang.String mMarkerItemType

mCreateDate

java.sql.Timestamp mCreateDate

Class atg.markers.MarkerEventMessage extends java.lang.Object implements Serializable

Serialized Fields

mProfileId

java.lang.String mProfileId

mMarkedItemId

java.lang.String mMarkedItemId

mMarkedItemType

java.lang.String mMarkedItemType

mRepositoryName

java.lang.String mRepositoryName

mSessionId

java.lang.String mSessionId

mParentSessionId

java.lang.String mParentSessionId
the id of the parent session, if any


mEventDate

java.sql.Timestamp mEventDate
the date of the event


mMarkerPropertyName

java.lang.String mMarkerPropertyName

Class atg.markers.MarkerException extends ContainerException implements Serializable

Class atg.markers.MarkerRemovedEventMessage extends MarkerEventMessage implements Serializable

Serialized Fields

mMarkerRemovedData

MarkerData mMarkerRemovedData

Class atg.markers.MarkerReplacedEventMessage extends MarkerEventMessage implements Serializable

Serialized Fields

mMarkerReplacedData

MarkerData mMarkerReplacedData

mMarkerAddedData

MarkerData mMarkerAddedData

Package atg.markers.bp

Class atg.markers.bp.BusinessProcessEventMessage extends MarkerEventMessage implements Serializable

Serialized Fields

mBusinessProcessName

java.lang.String mBusinessProcessName

mBusinessProcessStage

java.lang.String mBusinessProcessStage

mBusinessProcessStageSequence

int mBusinessProcessStageSequence

mProcessStartTime

java.sql.Timestamp mProcessStartTime

mTransient

boolean mTransient

Class atg.markers.bp.BusinessProcessException extends MarkerException implements Serializable


Package atg.naming

Class atg.naming.NameContextBindingEvent extends java.util.EventObject implements Serializable

serialVersionUID: 3357549008242110057L

Serialized Fields

mName

java.lang.String mName
The name to which the element was bound or unbound


mElement

java.lang.Object mElement
The element that was bound or unbound


Package atg.nucleus

Class atg.nucleus.ComponentControlDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentCreateDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentDeadlockException extends java.lang.RuntimeException implements Serializable

Class atg.nucleus.ComponentEvent extends java.util.EventObject implements Serializable

serialVersionUID: -7547737738779117435L

Serialized Fields

mId

int mId

mPath

java.lang.String mPath

Class atg.nucleus.ComponentExecuteDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentListDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentReadDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentRemoveDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentRenameDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ComponentSecurityException extends SecurityException implements Serializable

Serialized Fields

mPathname

java.lang.String mPathname

Class atg.nucleus.ComponentWriteDeniedException extends atg.nucleus.ComponentSecurityException implements Serializable

Class atg.nucleus.ConfigPathFile extends java.lang.Object implements Serializable

Serialized Fields

mFilePath

java.lang.String mFilePath

mConfigPathFile

VirtualFile mConfigPathFile

Class atg.nucleus.ConfigPathFileException extends ContainerException implements Serializable

Class atg.nucleus.ConfigurationConstant extends atg.nucleus.ConfigurationPropertyImpl implements Serializable

serialVersionUID: -8694630873008023858L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mTransient

boolean mTransient

Class atg.nucleus.ConfigurationEvent extends java.util.EventObject implements Serializable

serialVersionUID: 1457992222505777414L

Serialized Fields

mId

int mId

mPath

java.lang.String mPath

Class atg.nucleus.ConfigurationException extends java.lang.Exception implements Serializable

Serialized Fields

mPropertyName

java.lang.String mPropertyName

mRootException

java.lang.Throwable mRootException

mParentExceptions

java.util.Vector<E> mParentExceptions

Class atg.nucleus.ConfigurationPropertyImpl extends java.lang.Object implements Serializable

serialVersionUID: -1340114929600824654L

Class atg.nucleus.ConfigurationRef extends atg.nucleus.ConfigurationPropertyImpl implements Serializable

serialVersionUID: -6385476004744352735L

Serialized Fields

mRefName

java.lang.String mRefName

Class atg.nucleus.ConfigurationRefArray extends atg.nucleus.ConfigurationPropertyImpl implements Serializable

serialVersionUID: 6587515624912306444L

Serialized Fields

mType

atg.core.util.ClassAlias mType

mRefNames

java.lang.String[] mRefNames

Class atg.nucleus.ConfigurationRefMap extends atg.nucleus.ConfigurationPropertyImpl implements Serializable

serialVersionUID: -5431942547720074937L

Serialized Fields

mPairs

java.lang.String[] mPairs

Class atg.nucleus.ConfigurationRefProperty extends atg.nucleus.ConfigurationRef implements Serializable

serialVersionUID: 2240104372799610931L

Serialized Fields

mPropertyNames

java.lang.String[] mPropertyNames

Class atg.nucleus.ConfigurationRefResolvingMap extends atg.nucleus.ConfigurationPropertyImpl implements Serializable

serialVersionUID: -5431942547720074937L

Serialized Fields

mResolvingMap

atg.nucleus.ResolvingMap mResolvingMap

Class atg.nucleus.ConfigurationSource extends java.lang.Object implements Serializable

serialVersionUID: -7340953937067518845L

Serialized Fields

mFileSystemDescriptor

VirtualFileSystemDescriptor mFileSystemDescriptor

mPath

java.lang.String mPath

mSpecific

boolean mSpecific

Class atg.nucleus.DefaultedConfigurationState extends atg.nucleus.SimpleConfigurationState implements Serializable

Serialized Fields

mDefaultedProperties

java.util.Hashtable<K,V> mDefaultedProperties

Class atg.nucleus.DeltaComponentState extends atg.nucleus.SimpleComponentState implements Serializable

serialVersionUID: 4073638238966447251L

Serialized Fields

mModifiedProperties

java.util.Vector<E> mModifiedProperties

Class atg.nucleus.GenericRMIContext extends GenericRMIService implements Serializable

serialVersionUID: -8989927972666342194L

Serialized Fields

mElements

java.util.Dictionary<K,V> mElements

mPendingElements

java.util.Dictionary<K,V> mPendingElements

mBindingListeners

java.util.Vector<E> mBindingListeners

mPreBindingListeners

java.util.Vector<E> mPreBindingListeners

mDocumentRoot

java.io.File mDocumentRoot

mMimeTyper

MimeTyper mMimeTyper

mConfigurationLock

atg.nucleus.ConfigurationLock mConfigurationLock

mNotifier

atg.naming.BindingNotifier mNotifier

mElementLockController

atg.nucleus.ElementLockController mElementLockController

Class atg.nucleus.GenericRMIService extends java.rmi.server.UnicastRemoteObject implements Serializable

serialVersionUID: -2463593863833823308L

Serialized Fields

mNameContext

NameContext mNameContext
The NameContext containing this


mName

java.lang.String mName
The name of this within its NameContext


mNucleus

Nucleus mNucleus
The Nucleus managing this Service


mServiceConfiguration

Configuration mServiceConfiguration
The Configuration used to create this Service


mRunning

boolean mRunning
Flag indicating if the Service is running


mLogListeners

java.util.Vector<E> mLogListeners
The list of log listeners


mLoggingInfo

boolean mLoggingInfo
Flag if logging info messages


mLoggingWarning

boolean mLoggingWarning
Flag if logging warning messages


mLoggingError

boolean mLoggingError
Flag if logging error messages


mLoggingDebug

boolean mLoggingDebug
Flag if logging debug messages


mAdminServlet

javax.servlet.Servlet mAdminServlet
The Servlet handling this Service's administration


mAbsoluteName

java.lang.String mAbsoluteName
The absolute name


mServiceInfo

java.lang.String mServiceInfo
The info about this service


mRunningLock

java.lang.Object mRunningLock
A synchronization object for the start/stop service operation

Class atg.nucleus.IncompleteConfigurationException extends atg.nucleus.ConfigurationException implements Serializable

Class atg.nucleus.JavaConfigurationException extends java.lang.Exception implements Serializable

Class atg.nucleus.LicenseDisplay extends java.awt.Frame implements Serializable

Serialized Fields

mAcceptButton

java.awt.Button mAcceptButton

mRejectButton

java.awt.Button mRejectButton

mTextArea

java.awt.TextArea mTextArea

mAccepted

boolean mAccepted

Class atg.nucleus.LicenseFailureException extends java.lang.Exception implements Serializable

Class atg.nucleus.NonfatalValidationException extends ValidationException implements Serializable

Class atg.nucleus.NucleusRemoteImpl extends GenericRMIService implements Serializable

serialVersionUID: -6989646488440131411L

Serialized Fields

mExitCode

int mExitCode

Class atg.nucleus.PropertyValueParseException extends java.lang.Exception implements Serializable

Serialized Fields

mRootCause

java.lang.Throwable mRootCause

Class atg.nucleus.ResolvingMap extends java.util.HashMap implements Serializable

Class atg.nucleus.ServiceAdminServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

NULL_ARGS

java.lang.Object[] NULL_ARGS

NULL_PARAMETER_TYPES

java.lang.Class<T>[] NULL_PARAMETER_TYPES

Class atg.nucleus.ServiceEvent extends java.util.EventObject implements Serializable

serialVersionUID: -8248269931995858767L

Serialized Fields

mService

java.lang.Object mService
The Service being started or stopped


mNucleus

Nucleus mNucleus
The Nucleus


mServiceConfiguration

Configuration mServiceConfiguration
The Configuration

Class atg.nucleus.ServiceException extends java.lang.Exception implements Serializable

Class atg.nucleus.ServiceMap extends java.util.Hashtable implements Serializable

serialVersionUID: -4362141370736063212L

Class atg.nucleus.SimpleComponentState extends java.lang.Object implements Serializable

serialVersionUID: -7394437852152699799L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

mClassAlias

atg.core.util.ClassAlias mClassAlias

mConfigurationProperties

java.util.Hashtable<K,V> mConfigurationProperties

Class atg.nucleus.SimpleConfigurationState extends atg.nucleus.SimpleComponentState implements Serializable

serialVersionUID: 3812847919684358790L

Serialized Fields

mName

java.lang.String mName

mDescription

java.lang.String mDescription

mScope

java.lang.String mScope

mAccessControlList

AccessControlEntry[] mAccessControlList

mConfigurationEventListeners

java.util.Hashtable<K,V> mConfigurationEventListeners

Class atg.nucleus.ValidationException extends java.lang.Exception implements Serializable


Package atg.nucleus.dms

Class atg.nucleus.dms.DASMessage extends java.lang.Object implements Serializable

Class atg.nucleus.dms.FormSubmissionMessage extends DASMessage implements Serializable

Serialized Fields

mFormName

java.lang.String mFormName
Property: formName


Package atg.nucleus.logging

Class atg.nucleus.logging.VariableArgumentApplicationLoggingRMIImpl extends java.rmi.server.UnicastRemoteObject implements Serializable


Package atg.nucleus.servlet

Class atg.nucleus.servlet.NucleusProxyServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

mNucleus

Nucleus mNucleus

mProxyServlet

javax.servlet.Servlet mProxyServlet

mProxyServletPath

java.lang.String mProxyServletPath

mServletContext

javax.servlet.ServletContext mServletContext

mDebugMode

boolean mDebugMode

Class atg.nucleus.servlet.NucleusServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

mSystemNucleus

Nucleus mSystemNucleus

mLocalNucleus

Nucleus mLocalNucleus

mServletContext

javax.servlet.ServletContext mServletContext

mConfigPath

java.lang.String mConfigPath

mWebAppConfigPath

java.lang.String mWebAppConfigPath

mDirectory

java.lang.String mDirectory

mModules

java.lang.String mModules

mStartRequestServletPath

java.lang.String mStartRequestServletPath

mEnableComponentBrowser

boolean mEnableComponentBrowser

mDebugMode

boolean mDebugMode

Class atg.nucleus.servlet.SessionNameContextServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

mDebug

boolean mDebug

mSessionManager

atg.servlet.sessiontracking.GenericSessionManager mSessionManager

Package atg.payment

Class atg.payment.PaymentStatusImpl extends java.lang.Object implements Serializable

Serialized Fields

mTransactionId

java.lang.String mTransactionId

mAmount

double mAmount

mTransactionSuccess

boolean mTransactionSuccess

mErrorMessage

java.lang.String mErrorMessage

mTransactionTimestamp

java.util.Date mTransactionTimestamp

Package atg.payment.avs

Class atg.payment.avs.AddressVerificationStatusImpl extends PaymentStatusImpl implements Serializable

Class atg.payment.avs.GenericAddressVerificationInfo extends java.lang.Object implements Serializable

Serialized Fields

mPaymentId

java.lang.String mPaymentId

mAddress1

Address mAddress1

mAddress2

Address mAddress2

mAddressVerificationItems

AddressVerificationItem[] mAddressVerificationItems

Package atg.payment.creditcard

Class atg.payment.creditcard.AuthorizationAddressVerificationStatus extends java.lang.Object implements Serializable

Class atg.payment.creditcard.BasicCreditCardInfoImpl extends java.lang.Object implements Serializable

Serialized Fields

mPaymentId

java.lang.String mPaymentId

mAmount

double mAmount

mCreditCardNumber

java.lang.String mCreditCardNumber

mCreditCardType

java.lang.String mCreditCardType

mExpirationMonth

java.lang.String mExpirationMonth

mExpirationDayOfMonth

java.lang.String mExpirationDayOfMonth

mExpirationYear

java.lang.String mExpirationYear

mCurrencyCode

java.lang.String mCurrencyCode

mBillingAddress

Address mBillingAddress

Class atg.payment.creditcard.CreditCardStatusImpl extends PaymentStatusImpl implements Serializable

Serialized Fields

mAuthorizationExpiration

java.util.Date mAuthorizationExpiration

mAvsCode

java.lang.String mAvsCode

mAvsDescriptiveResult

java.lang.String mAvsDescriptiveResult

Class atg.payment.creditcard.GenericCreditCardInfo extends atg.payment.creditcard.BasicCreditCardInfoImpl implements Serializable

Serialized Fields

mOrder

Order mOrder

Package atg.payment.giftcertificate

Class atg.payment.giftcertificate.GenericGiftCertificateInfo extends java.lang.Object implements Serializable

Serialized Fields

mProfileId

java.lang.String mProfileId

mGiftCertificateNumber

java.lang.String mGiftCertificateNumber

mAmount

double mAmount

Class atg.payment.giftcertificate.GiftCertificateStatusImpl extends PaymentStatusImpl implements Serializable

Serialized Fields

mAuthorizationExpiration

java.util.Date mAuthorizationExpiration

Package atg.payment.invoicerequest

Class atg.payment.invoicerequest.GenericInvoiceRequestInfo extends java.lang.Object implements Serializable

Serialized Fields

mPONumber

java.lang.String mPONumber

mBillingAddr

Address mBillingAddr

mOrder

Order mOrder

mPaymentGroup

PaymentGroup mPaymentGroup

mPreferredFormat

java.lang.String mPreferredFormat

mPreferredDeliveryMode

java.lang.String mPreferredDeliveryMode

mBalanceDue

java.lang.Double mBalanceDue

mPaymentDueDate

java.util.Date mPaymentDueDate

mPaymentNetDays

java.lang.Integer mPaymentNetDays

mPaymentDiscountDays

java.lang.Integer mPaymentDiscountDays

mPaymentDiscountPercent

java.lang.Double mPaymentDiscountPercent

Package atg.payment.storecredit

Class atg.payment.storecredit.GenericStoreCreditInfo extends java.lang.Object implements Serializable

Serialized Fields

mProfileId

java.lang.String mProfileId

mStoreCreditNumber

java.lang.String mStoreCreditNumber

mAmount

double mAmount

Class atg.payment.storecredit.StoreCreditStatusImpl extends PaymentStatusImpl implements Serializable

Serialized Fields

mAuthorizationExpiration

java.util.Date mAuthorizationExpiration

Package atg.payment.tax

Class atg.payment.tax.TaxableItemImpl extends java.lang.Object implements Serializable

Serialized Fields

mAmount

double mAmount
the amount


mCatalogRefId

java.lang.String mCatalogRefId
the id of the object that this TaxableItem represents


mProductId

java.lang.String mProductId
the uderlying product's ID


mQuantity

long mQuantity
how many of the item there are to be taxed


mTaxStatus

java.lang.String mTaxStatus

Class atg.payment.tax.TaxRequestInfoImpl extends java.lang.Object implements Serializable

Serialized Fields

mOrderId

java.lang.String mOrderId
the id of this order


mBillingAddress

Address mBillingAddress
the billing address


mShippingDestinations

ShippingDestination[] mShippingDestinations

mOrder

Order mOrder

mUserData

java.lang.Object mUserData

Package atg.portal.admin

Class atg.portal.admin.CommunityTemplateRMIService extends GenericRMIService implements Serializable

Serialized Fields

mPortalRepositoryManager

atg.portal.admin.PortalRepositoryManager mPortalRepositoryManager

Class atg.portal.admin.CommunityTemplateRMIService_Stub extends java.rmi.server.RemoteStub implements Serializable

serialVersionUID: 2L


Package atg.portal.admin.exceptions

Class atg.portal.admin.exceptions.CommunitySpawnException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.DuplicateRegionException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.InvalidNameException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.InvalidTypeException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.ManifestFileException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.MissingIdException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.MissingItemDescriptorException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.MissingParentException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.MissingUrlException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.PortalObjectCreationException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.PortalObjectDeleteException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.PortalObjectNotFoundException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.PortalObjectUpdateException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.RegistrationException extends PortalException implements Serializable

Class atg.portal.admin.exceptions.RemoveSharedGearException extends PortalException implements Serializable


Package atg.portal.alert

Class atg.portal.alert.AdministrationMessage extends PortalMessage implements Serializable

serialVersionUID: 2044725956014539207L

Serialized Fields

mProfileId

java.lang.String mProfileId

Class atg.portal.alert.AlertTargetMessage extends java.lang.Object implements Serializable

Serialized Fields

mMessageBean

java.io.Serializable mMessageBean

mTarget

java.lang.String[] mTarget

mTargetType

java.lang.String mTargetType

mMessageType

java.lang.String mMessageType

Class atg.portal.alert.FrameworkMessage extends PortalMessage implements Serializable

serialVersionUID: 8194245468627438794L

Serialized Fields

mProfileId

java.lang.String mProfileId

Class atg.portal.alert.GearMessage extends PortalMessage implements Serializable

serialVersionUID: -3877789116886554859L

Serialized Fields

mGearId

java.lang.String mGearId

mCommunityId

java.lang.String mCommunityId

mProfileId

java.lang.String mProfileId

Class atg.portal.alert.PortalMessage extends java.lang.Object implements Serializable

serialVersionUID: 8645237515653658375L

Serialized Fields

mMessageType

java.lang.String mMessageType
The JMS message type


mSourceId

java.lang.String mSourceId
The sourceId and sourceType of the message


mSourceType

java.lang.String mSourceType

mCreationDateValue

long mCreationDateValue

mStartDateValue

long mStartDateValue

mEndDateValue

long mEndDateValue

mExpirationDateValue

long mExpirationDateValue

Package atg.portal.framework

Class atg.portal.framework.EnvironmentException extends ContainerException implements Serializable

Class atg.portal.framework.GearHeightEnum extends Enum implements Serializable

Class atg.portal.framework.GearWidthEnum extends Enum implements Serializable

Class atg.portal.framework.InsertionOrderedSet extends java.util.AbstractSet implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException

Class atg.portal.framework.PortalException extends javax.servlet.ServletException implements Serializable

Class atg.portal.framework.RegionHeightEnum extends Enum implements Serializable

Class atg.portal.framework.RegionWidthEnum extends Enum implements Serializable


Package atg.process

Class atg.process.ContextParameterProcessor extends java.lang.Object implements Serializable

Serialized Fields

mIndividual

boolean mIndividual

mMessageType

java.lang.String mMessageType

mIndividualInstanceCopy

RepositoryItem mIndividualInstanceCopy

Class atg.process.InfiniteLoopException extends ProcessException implements Serializable

Class atg.process.ProcessElementInfo extends java.lang.Object implements Serializable

Serialized Fields

mElementId

java.lang.String mElementId
property: elementId


mElementStatus

int mElementStatus
property: elementStatus

Class atg.process.ProcessException extends ContainerException implements Serializable

Class atg.process.ProcessExecutionContextImpl extends java.lang.Object implements Serializable

Serialized Fields

mIndividual

boolean mIndividual

mProcessInstance

RepositoryItem mProcessInstance

mSubject

RepositoryItem mSubject

mMessageType

java.lang.String mMessageType

mBatchExecutionId

java.lang.String mBatchExecutionId

Class atg.process.ProcessManagerAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mResourceName

java.lang.String mResourceName

mResourceBundle

java.util.ResourceBundle mResourceBundle

mProcessManager

atg.process.ProcessManagerService mProcessManager

mTransactionManager

javax.transaction.TransactionManager mTransactionManager

Package atg.process.action

Class atg.process.action.ActionException extends java.lang.Exception implements Serializable

Serialized Fields

mErrorResponse

int mErrorResponse
property: errorResponse


mFailedActionInfos

FailedActionInfo[] mFailedActionInfos
property: failedActionInfos

Class atg.process.action.FailedActionInfo extends java.lang.Object implements Serializable

Serialized Fields

mContext

ProcessExecutionContext mContext
property: context


mErrorMessage

java.lang.String mErrorMessage
property: errorMessage


mException

java.lang.Throwable mException
property: exception


Package atg.projects.b2cstore

Class atg.projects.b2cstore.B2CProfileException extends java.lang.Exception implements Serializable

Serialized Fields

mErrorCode

java.lang.String mErrorCode

mErrorMessage

java.lang.String mErrorMessage

mDescription

java.lang.String mDescription

Class atg.projects.b2cstore.SearchMessage extends DPSMessage implements Serializable

Serialized Fields

mSearchString

java.lang.String mSearchString

Package atg.reporting.datacollection

Class atg.reporting.datacollection.LoggingException extends java.lang.Exception implements Serializable

Serialized Fields

mRootCause

java.lang.Throwable mRootCause

Package atg.repository

Class atg.repository.ChainedItemDescriptor extends ItemDescriptorImpl implements Serializable

serialVersionUID: 996564341912831353L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mDescriptors

RepositoryItemDescriptor[] mDescriptors

Class atg.repository.ChooserPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mPropertyNames

java.lang.String[] mPropertyNames

mDebug

boolean mDebug

Class atg.repository.ConcurrentUpdateException extends RepositoryException implements Serializable

Class atg.repository.DistinguishedNamePropertyDescriptor extends atg.repository.dp.DerivedPropertyDescriptor implements Serializable

Serialized Fields

mRDNProperty

java.lang.String mRDNProperty

mParentDNProperty

java.lang.String mParentDNProperty

mDefaultParentDN

java.lang.String mDefaultParentDN

Class atg.repository.DuplicateIdException extends RepositoryException implements Serializable

Class atg.repository.DynamicBeanInfoDescriptor extends java.lang.Object implements Serializable

serialVersionUID: -2222832694995556877L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mBeanInfo

DynamicBeanInfo mBeanInfo

mItemDescriptorName

java.lang.String mItemDescriptorName

mRepository

Repository mRepository

mRepositoryView

RepositoryView mRepositoryView

Class atg.repository.FilePropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mPathNameProperty

java.lang.String mPathNameProperty
Values of these attributes for this particular property


mPathPrefix

java.lang.String mPathPrefix

Class atg.repository.GlobalSessionEnumPropertyDescriptor extends atg.repository.SessionEnumPropertyDescriptor implements Serializable

Class atg.repository.GroupMembersPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mRepositoryName

java.lang.String mRepositoryName

mGroupNameProperty

java.lang.String mGroupNameProperty

mNameIsComponentPath

boolean mNameIsComponentPath

mGroupName

java.lang.String mGroupName

mGroupContainerPath

java.lang.String mGroupContainerPath

Class atg.repository.ItemDescriptorImpl extends java.lang.Object implements Serializable

serialVersionUID: 8533345803592121454L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pStream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
When deserialize, update the internal table of property names.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pStream)
                  throws java.io.IOException
We only need to serialize the mPropertyDescriptors

Throws:
java.io.IOException
Serialized Fields

mPropertyDescriptorTable

java.util.Dictionary<K,V> mPropertyDescriptorTable
Table of all the DynamicPropertyDescriptors hashed by property name


mPropertyNames

java.lang.String[] mPropertyNames
An Array of all the property names


mPropertyDescriptors

DynamicPropertyDescriptor[] mPropertyDescriptors
An Array of all the DynamicPropertyDescriptors


mListenerSync

java.lang.Object mListenerSync
Lock for properties changed event operations


mBeanDescriptor

DynamicBeanDescriptor mBeanDescriptor

mItemDescriptorName

java.lang.String mItemDescriptorName

mItemDisplayNameProperty

java.lang.String mItemDisplayNameProperty

mRepositoryView

RepositoryView mRepositoryView

mRepository

Repository mRepository

mRepositoryImpl

RepositoryImpl mRepositoryImpl

mPropertiesChangedListeners

java.util.ArrayList<E> mPropertiesChangedListeners

mLoggingDebug

boolean mLoggingDebug

Class atg.repository.MimeTyperPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mIdentifier

java.lang.String mIdentifier

mMimeTyperPath

java.lang.String mMimeTyperPath

mMimeTyper

MimeTyper mMimeTyper

Class atg.repository.MutableSerializableRepositoryItem extends atg.repository.SerializableRepositoryItem implements Serializable

serialVersionUID: 6725984937723156517L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mPropertyChanges

java.util.Dictionary<K,V> mPropertyChanges

Class atg.repository.NotEmptyChooserPropertyDescriptor extends atg.repository.ChooserPropertyDescriptor implements Serializable

Serialized Fields

mMerge

boolean mMerge

mRemoveDuplicates

boolean mRemoveDuplicates

Class atg.repository.NotNullChooserPropertyDescriptor extends atg.repository.ChooserPropertyDescriptor implements Serializable

Class atg.repository.PasswordPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mPasswordHasher

PasswordHasher mPasswordHasher

mAlgorithm

java.lang.String mAlgorithm

mHashedPropertyName

java.lang.String mHashedPropertyName

mUseBase64

boolean mUseBase64

Class atg.repository.PropertiesChangedEvent extends java.util.EventObject implements Serializable

Serialized Fields

mType

int mType

mItem

atg.repository.RepositoryChangedItem mItem

mRepositoryId

java.lang.String mRepositoryId

mItemDescriptorName

java.lang.String mItemDescriptorName

mProperties

java.util.Map<K,V> mProperties

Class atg.repository.QueryEvent extends java.util.EventObject implements Serializable

Serialized Fields

mView

RepositoryView mView

mQueryString

java.lang.String mQueryString

mNamedQuery

boolean mNamedQuery

mStartingIndex

int mStartingIndex

mEndingIndex

int mEndingIndex

mResultIds

java.lang.String[] mResultIds

Class atg.repository.ReferencedValuePropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mReferenceProperty

java.lang.String mReferenceProperty

mReferencedValueDataType

java.lang.Class<T> mReferencedValueDataType

mPropertyType

java.lang.Class<T> mPropertyType

mComponentPropertyType

java.lang.Class<T> mComponentPropertyType

mReferenceDataType

java.lang.Class<T> mReferenceDataType

Class atg.repository.RelativeDistinguishedNamePropertyDescriptor extends atg.repository.dp.DerivedPropertyDescriptor implements Serializable

Serialized Fields

mType

java.lang.String mType

mValueProperty

java.lang.String mValueProperty

Class atg.repository.RemovedItemException extends java.lang.RuntimeException implements Serializable

Class atg.repository.RepositoryException extends ContainerException implements Serializable

Serialized Fields

mId

java.lang.String mId
id of associated repository item, if applicable


mItemDescriptorName

java.lang.String mItemDescriptorName
name of associated item descriptor, if applicable

Class atg.repository.RepositoryItemGroupConfiguration extends java.lang.Object implements Serializable

Serialized Fields

mRepositoryGroupDescription

java.lang.String mRepositoryGroupDescription

mRepositoryPath

java.lang.String mRepositoryPath

mRepositoryViewName

java.lang.String mRepositoryViewName

mRepositoryGroupClass

java.lang.Class<T> mRepositoryGroupClass

Class atg.repository.RepositoryItemImpl extends java.lang.Object implements Serializable

serialVersionUID: -5730950788248146731L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pStream)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
When deserialize, update the internal table of property names.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pStream)
                  throws java.io.IOException
We only need to serialize the mPropertyDescriptors

Throws:
java.io.IOException
Serialized Fields

mItemDescriptor

ItemDescriptorImpl mItemDescriptor

mWrappedItem

RepositoryItemImpl mWrappedItem

Class atg.repository.RepositoryPropertyDescriptor extends DynamicPropertyDescriptor implements Serializable

serialVersionUID: 4273176819496571710L

Serialized Fields

mQueryable

boolean mQueryable

mCacheable

boolean mCacheable

mVersionable

boolean mVersionable

mVersionableSet

boolean mVersionableSet

mDefaultValue

java.lang.Object mDefaultValue

mIdProperty

boolean mIdProperty

mDerived

boolean mDerived
description: true if this is a derived property, else false. The default is false.


mPersistent

boolean mPersistent
flag indicating if this is a persistent property.


mIgnoreNullValue

boolean mIgnoreNullValue

mDefaultValueString

java.lang.String mDefaultValueString

mCollectionOrMap

boolean mCollectionOrMap

mCascadeInsert

boolean mCascadeInsert

mCascadeUpdate

boolean mCascadeUpdate

mCascadeDelete

boolean mCascadeDelete

mItemDescriptor

RepositoryItemDescriptor mItemDescriptor
descriptor in which this attribute is defined


mPropertyItemDescriptor

RepositoryItemDescriptor mPropertyItemDescriptor

mComponentItemDescriptor

RepositoryItemDescriptor mComponentItemDescriptor

mLoggingDebug

boolean mLoggingDebug

Class atg.repository.RepositoryRollbackException extends RepositoryException implements Serializable

Class atg.repository.RepositorySecurityException extends RepositoryException implements Serializable

Serialized Fields

mSecurityException

SecurityException mSecurityException

Class atg.repository.SerializableRepositoryItem extends java.lang.Object implements Serializable

serialVersionUID: 7799608636233977486L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mPropertyValues

java.util.Dictionary<K,V> mPropertyValues

mRepositoryId

java.lang.String mRepositoryId

mDisplayName

java.lang.String mDisplayName

mRepository

Repository mRepository

mItemDescriptor

RepositoryItemDescriptor mItemDescriptor

mToString

java.lang.String mToString

Class atg.repository.SessionEnumPropertyDescriptor extends atg.adapter.gsa.EnumPropertyDescriptor implements Serializable

Serialized Fields

mSessionAttributeName

java.lang.String mSessionAttributeName

Class atg.repository.SessionPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mSessionAttributeName

java.lang.String mSessionAttributeName

Class atg.repository.UnsupportedFeatureException extends RepositoryException implements Serializable


Package atg.repository.content

Class atg.repository.content.ContentItemDescriptor extends GenericService implements Serializable

serialVersionUID: -3143997632881485661L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mPropertyDescriptorTable

java.util.Dictionary<K,V> mPropertyDescriptorTable

mPropertyNames

java.lang.String[] mPropertyNames

mPropertyDescriptors

DynamicPropertyDescriptor[] mPropertyDescriptors

mRepository

Repository mRepository

mRepositoryView

RepositoryView mRepositoryView

mItemDisplayNameProperty

java.lang.String mItemDisplayNameProperty

mItemDescriptorName

java.lang.String mItemDescriptorName

Class atg.repository.content.ContentRepositoryAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mRepository

ContentRepository mRepository

mLogger

ApplicationLogging mLogger

mTransactionManager

javax.transaction.TransactionManager mTransactionManager

Class atg.repository.content.ContentRepositoryFolderImpl extends java.lang.Object implements Serializable

serialVersionUID: 424252121823623894L

Serialized Fields

mFolderId

java.lang.String mFolderId

mItemPath

java.lang.String mItemPath

mItemDisplayName

java.lang.String mItemDisplayName

mAncestorFolderPaths

java.lang.String[] mAncestorFolderPaths

mAncestorFolderIds

java.lang.String[] mAncestorFolderIds

mChildFolderPaths

java.lang.String[] mChildFolderPaths

mChildFolderIds

java.lang.String[] mChildFolderIds

mChildContentPaths

java.lang.String[] mChildContentPaths

mChildContentIds

java.lang.String[] mChildContentIds

Class atg.repository.content.LastModifiedEntry extends java.lang.Object implements Serializable

serialVersionUID: -121786702632164957L

Serialized Fields

mLastModified

long mLastModified

mFile

java.io.File mFile

Class atg.repository.content.QueryCache extends Cache implements Serializable


Package atg.repository.databinding

Class atg.repository.databinding.MappingException extends ContainerException implements Serializable

Class atg.repository.databinding.MappingItemDescriptor extends ItemDescriptorImpl implements Serializable

Serialized Fields

mPropertyDescriptorsByName

java.util.Dictionary<K,V> mPropertyDescriptorsByName

mUnmappedItemDescriptor

RepositoryItemDescriptor mUnmappedItemDescriptor

mItemMappingElement

atg.repository.databinding.ItemMappingElement mItemMappingElement

mMappingTools

atg.repository.databinding.MappingTools mMappingTools

Class atg.repository.databinding.MappingList extends java.util.ArrayList implements Serializable

Serialization Methods

writeReplace

private java.lang.Object writeReplace()
Serialized Fields

mLocalList

java.util.List<E> mLocalList

mMappingTools

atg.repository.databinding.MappingTools mMappingTools

Class atg.repository.databinding.MappingPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mUnmappedPropertyDescriptor

RepositoryPropertyDescriptor mUnmappedPropertyDescriptor

mMappingTools

atg.repository.databinding.MappingTools mMappingTools

Package atg.repository.linked

Class atg.repository.linked.RepositoryLinkPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mUniqueIdPropertyLocal

java.lang.String mUniqueIdPropertyLocal
property: uniqueIdPropertyLocal


mUniqueIdPropertyRemote

java.lang.String mUniqueIdPropertyRemote
property: uniqueIdPropertyRemote


Package atg.repository.loader

Class atg.repository.loader.EncodingChangedException extends java.lang.RuntimeException implements Serializable

Serialized Fields

mNewCharset

java.lang.String mNewCharset

Class atg.repository.loader.ErrorImpl extends java.lang.Object implements Serializable

Serialized Fields

mContainer

Batch mContainer

mMessage

java.lang.String mMessage

mException

java.lang.Exception mException

mSourcePath

java.lang.String mSourcePath

mOperationType

atg.repository.loader.OperationType mOperationType

Class atg.repository.loader.HaltJobProcessingException extends java.lang.RuntimeException implements Serializable

Class atg.repository.loader.HtmlMetaParserException extends atg.repository.loader.LoaderException implements Serializable

Class atg.repository.loader.JobEvent extends java.util.EventObject implements Serializable

Serialized Fields

mJobId

atg.repository.loader.JobId mJobId

Class atg.repository.loader.JobException extends atg.repository.loader.LoaderException implements Serializable

Class atg.repository.loader.JobId extends java.lang.Object implements Serializable

Serialized Fields

mId

java.lang.String mId

mPrintString

java.lang.String mPrintString

Class atg.repository.loader.JobStatus extends Enum implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class atg.repository.loader.LoaderEvent extends java.util.EventObject implements Serializable

Serialized Fields

mJobId

atg.repository.loader.JobId mJobId

mFile

java.io.File mFile

Class atg.repository.loader.LoaderException extends ContainerException implements Serializable

Class atg.repository.loader.NotUnderContentRootPathException extends java.lang.Exception implements Serializable

Class atg.repository.loader.OperationException extends java.lang.Exception implements Serializable

Serialized Fields

mErrorList

ErrorList mErrorList

Class atg.repository.loader.OperationType extends Enum implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class atg.repository.loader.RemoteManifestProcessorService extends GenericRMIService implements Serializable

Serialized Fields

mUserName

java.lang.String mUserName

mUser

User mUser

mUserAuthority

LoginUserAuthority mUserAuthority

mPasswordHasher

PasswordHasher mPasswordHasher

mLoaderManager

LoaderManager mLoaderManager

Class atg.repository.loader.RemoteManifestProcessorService_Stub extends java.rmi.server.RemoteStub implements Serializable

serialVersionUID: 2L

Class atg.repository.loader.RepositoryLoaderType extends Enum implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class atg.repository.loader.ResultImpl extends java.lang.Object implements Serializable

Serialized Fields

mContainer

Batch mContainer

mSourcePath

java.lang.String mSourcePath

mRepositoryId

java.lang.String mRepositoryId

mItemDescriptorName

java.lang.String mItemDescriptorName

mOperationType

atg.repository.loader.OperationType mOperationType

Class atg.repository.loader.TransactionalStatus extends Enum implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class atg.repository.loader.UnknownTypeMappingException extends ContainerException implements Serializable

Serialized Fields

mSourceException

java.lang.Throwable mSourceException

Class atg.repository.loader.UpdatePropertyConfiguration extends Enum implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class atg.repository.loader.XMLTransformerException extends atg.repository.loader.LoaderException implements Serializable


Package atg.repository.rql

Class atg.repository.rql.AllQuery extends atg.repository.rql.RqlQuery implements Serializable

Class atg.repository.rql.AndQuery extends atg.repository.rql.CompoundQuery implements Serializable

Class atg.repository.rql.ComparisonQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mLeft

RqlExpression mLeft

mRight

RqlExpression mRight

mOperator

int mOperator

Class atg.repository.rql.CompositeIdInFoldersQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mIds

atg.repository.CompositeKey[] mIds

Class atg.repository.rql.CompositeIdInQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mIds

atg.repository.CompositeKey[] mIds

Class atg.repository.rql.CompoundQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mQueries

atg.repository.rql.RqlQuery[] mQueries

Class atg.repository.rql.ConstantExpression extends RqlExpression implements Serializable

Serialized Fields

mValue

java.lang.Object mValue

Class atg.repository.rql.CountExpression extends RqlExpression implements Serializable

Serialized Fields

mExpression

RqlExpression mExpression

Class atg.repository.rql.ElementOfExpression extends RqlExpression implements Serializable

Serialized Fields

mExpression

RqlExpression mExpression

mIndexExpression

RqlExpression mIndexExpression

Class atg.repository.rql.IdInQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mIds

java.lang.String[] mIds

Class atg.repository.rql.IncludesItemQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mCollection

RqlExpression mCollection

mQuery

atg.repository.rql.RqlQuery mQuery

Class atg.repository.rql.InFoldersQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mIds

java.lang.String[] mIds

Class atg.repository.rql.IsNullQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mExpression

RqlExpression mExpression

Class atg.repository.rql.NotQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mQuery

atg.repository.rql.RqlQuery mQuery

Class atg.repository.rql.OrderByClause extends java.lang.Object implements Serializable

Serialized Fields

mProperties

atg.repository.rql.OrderByProperty[] mProperties

Class atg.repository.rql.OrderByProperty extends java.lang.Object implements Serializable

Serialized Fields

mPropertyIsParameter

boolean mPropertyIsParameter

mProperty

java.lang.String mProperty

mPropertyIndex

int mPropertyIndex

mDescendingIsParameter

boolean mDescendingIsParameter

mDescending

boolean mDescending

mDescendingIndex

int mDescendingIndex

mCaseSensitiveIsParameter

boolean mCaseSensitiveIsParameter

mCaseSensitive

boolean mCaseSensitive

mCaseSensitiveIndex

int mCaseSensitiveIndex

Class atg.repository.rql.OrQuery extends atg.repository.rql.CompoundQuery implements Serializable

Class atg.repository.rql.ParameterExpression extends RqlExpression implements Serializable

Serialized Fields

mParamIndex

int mParamIndex

mFieldName

java.lang.String mFieldName

Class atg.repository.rql.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor

currentToken

atg.repository.rql.Token currentToken

expectedTokenSequences

int[][] expectedTokenSequences

tokenImage

java.lang.String[] tokenImage

eol

java.lang.String eol

Class atg.repository.rql.PropertyExpression extends RqlExpression implements Serializable

Serialized Fields

mProperty

java.lang.String mProperty

Class atg.repository.rql.PropertyHintsClause extends java.lang.Object implements Serializable

Serialized Fields

mProperties

java.lang.String[] mProperties

Class atg.repository.rql.PropertyOfExpression extends RqlExpression implements Serializable

Serialized Fields

mExpression

RqlExpression mExpression

mProperty

java.lang.String mProperty

Class atg.repository.rql.RangeClause extends java.lang.Object implements Serializable

Serialized Fields

mStartDefined

boolean mStartDefined

mStartIsParameter

boolean mStartIsParameter

mStartIndex

int mStartIndex

mStartParamIndex

int mStartParamIndex

mCountDefined

boolean mCountDefined

mCountIsParameter

boolean mCountIsParameter

mCount

int mCount

mCountParamIndex

int mCountParamIndex

Class atg.repository.rql.RqlExpression extends java.lang.Object implements Serializable

Class atg.repository.rql.RqlQuery extends java.lang.Object implements Serializable

Serialized Fields

mCacheable

boolean mCacheable

Class atg.repository.rql.RqlStatement extends java.lang.Object implements Serializable

Serialized Fields

mQuery

atg.repository.rql.RqlQuery mQuery

mOrderBy

atg.repository.rql.OrderByClause mOrderBy

mRange

atg.repository.rql.RangeClause mRange

mPropertyHints

atg.repository.rql.PropertyHintsClause mPropertyHints

Class atg.repository.rql.TextSearchQuery extends atg.repository.rql.RqlQuery implements Serializable

Serialized Fields

mProperty

RqlExpression mProperty

mSearchString

RqlExpression mSearchString

mSearchStringFormat

RqlExpression mSearchStringFormat

Class atg.repository.rql.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode

Package atg.repository.search.indexing

Class atg.repository.search.indexing.ConfigurationClaimedIndexingException extends IndexingException implements Serializable

Class atg.repository.search.indexing.IndexingException extends java.lang.Exception implements Serializable

Class atg.repository.search.indexing.IndexingOutputConfig extends GenericRMIService implements Serializable

Serialized Fields

mBulkLoader

BulkLoader mBulkLoader

mDocumentSubmitter

DocumentSubmitter mDocumentSubmitter

mIncrementalLoader

IncrementalLoader mIncrementalLoader

mOutputItemSpecifier

OutputItemSpecifier mOutputItemSpecifier

mDefaultPropertyAccessor

PropertyAccessor mDefaultPropertyAccessor

mDefinitionFile

atg.xml.XMLFile mDefinitionFile

mDocumentLevelOutputProperties

java.lang.String[] mDocumentLevelOutputProperties

mEveryItemOutputProperties

java.lang.String[] mEveryItemOutputProperties

mEnableIncrementalLoading

boolean mEnableIncrementalLoading

mEnableScheduledBulkLoading

boolean mEnableScheduledBulkLoading

mFormatterMap

ServiceMap mFormatterMap

mFilterMap

ServiceMap mFilterMap

mPropertyAccessorMap

ServiceMap mPropertyAccessorMap
name to property accessor map.


mMaxIncrementalChangesPerGeneration

int mMaxIncrementalChangesPerGeneration
The maximumum number of incremental changes to put in a generation.


mIncrementalUpdateMinutes

int mIncrementalUpdateMinutes
Number of minutes to wait between incremental updates.


mDefaultFormatter

PropertyFormatter mDefaultFormatter
The default formatter


mIterationProducer

IterationProducer mIterationProducer
An iteration producers. There can be only one.


mVariantProducers

VariantProducer[] mVariantProducers

mDocumentSpecifiers

OutputItemSpecifier[] mDocumentSpecifiers

mAllOutputPropertyNames

java.lang.String[] mAllOutputPropertyNames

mMetaOutputPropertyNames

java.lang.String[] mMetaOutputPropertyNames

mTextOutputPropertyNames

java.lang.String[] mTextOutputPropertyNames

mFilterOutDollarOutputPropertyNames

boolean mFilterOutDollarOutputPropertyNames

mTextActiveZones

java.lang.String mTextActiveZones
The active zones for text properties.


mBulkLoadWithRetryMinutes

int mBulkLoadWithRetryMinutes
Number of minutes to keep trying bulkLoadWithRetry.


mBulkScheduleConsiderIndexedMinutes

int mBulkScheduleConsiderIndexedMinutes
Number of minutes to consider content already indexed for a scheduled bulk load.


mMaxFailuresAllowedForCommitting

int mMaxFailuresAllowedForCommitting
The maximum nubmer of failures allowed for committing.


mRepository

Repository mRepository
Optional override of repository specified in definition file


mRepositoryItemGroup

RepositoryItemGroup mRepositoryItemGroup
Optional override of repository item group specified in definition file


mIndexingSynchronizations

IndexingSynchronization[] mIndexingSynchronizations

mTargetName

java.lang.String mTargetName

mUnversionedRepositoryPath

java.lang.String mUnversionedRepositoryPath

mVersionedRepositoryPath

java.lang.String mVersionedRepositoryPath

mOnPubServer

boolean mOnPubServer

mRmiServer

atg.server.rmi.RmiServer mRmiServer

mJobId

int mJobId
the jobId of our scheduled task


mScheduler

Scheduler mScheduler
The scheduler controlling when this service's scheduled job runs


mSchedule

Schedule mSchedule
The schedule of when this scheduled job runs


mJobName

java.lang.String mJobName
The name of this scheduled job


mJobDescription

java.lang.String mJobDescription
A description of this scheduled job


mThreadMethod

int mThreadMethod
the threading method to be used for the job. The default is REUSED_THREAD.


mTransactional

boolean mTransactional

Package atg.repository.search.indexing.specifier

Class atg.repository.search.indexing.specifier.PropertyTypeEnum extends Enum implements Serializable


Package atg.repository.servlet

Class atg.repository.servlet.RepositoryFormHashtable extends java.util.Hashtable implements Serializable

serialVersionUID: 3465219641568516969L

Serialized Fields

mUpcaseGetAndPut

boolean mUpcaseGetAndPut

Class atg.repository.servlet.RepositoryFormList extends java.util.ArrayList implements Serializable

Serialized Fields

mRepositoryIds

java.lang.String[] mRepositoryIds

mSkip

boolean[] mSkip

mNumNewValues

int mNumNewValues

mUpdateMode

java.lang.String mUpdateMode

Class atg.repository.servlet.RepositoryFormMap extends RepositoryFormList implements Serializable

Serialized Fields

mKeys

java.lang.String[] mKeys

Package atg.repository.xml

Class atg.repository.xml.AddException extends ContainerException implements Serializable

Class atg.repository.xml.DetailedRemoveException extends ContainerException implements Serializable

Serialized Fields

mItemDescriptorName

java.lang.String mItemDescriptorName

mRepositoryName

java.lang.String mRepositoryName

mRemovedItemIds

java.lang.String[] mRemovedItemIds

mErrorsMap

java.util.Map<K,V> mErrorsMap

Class atg.repository.xml.GetException extends ContainerException implements Serializable

Class atg.repository.xml.MatchException extends ContainerException implements Serializable

Class atg.repository.xml.MaxNumberItemsException extends ContainerException implements Serializable

Class atg.repository.xml.RemoveException extends ContainerException implements Serializable

Class atg.repository.xml.SchemaGenerationException extends ContainerException implements Serializable

Class atg.repository.xml.SchemaProcessingException extends ContainerException implements Serializable

Class atg.repository.xml.UpdateException extends ContainerException implements Serializable


Package atg.rview

Class atg.rview.RelationalViewException extends java.lang.Exception implements Serializable


Package atg.scenario

Class atg.scenario.ScenarioException extends ProcessException implements Serializable


Package atg.scenario.action

Class atg.scenario.action.ActionException extends java.lang.Exception implements Serializable

Serialized Fields

mErrorResponse

int mErrorResponse
Deprecated. 
property: errorResponse


mFailedActionInfos

FailedActionInfo[] mFailedActionInfos
Deprecated. 
property: failedActionInfos

Class atg.scenario.action.FailedActionInfo extends java.lang.Object implements Serializable

Serialized Fields

mContext

ScenarioExecutionContext mContext
Deprecated. 
property: context


mErrorMessage

java.lang.String mErrorMessage
Deprecated. 
property: errorMessage


mException

java.lang.Throwable mException
Deprecated. 
property: exception

Class atg.scenario.action.ProcessWrapperActionException extends ActionException implements Serializable

Serialized Fields

mScenarioActionException

ActionException mScenarioActionException

Class atg.scenario.action.ProcessWrapperFailedActionInfo extends FailedActionInfo implements Serializable

Serialized Fields

mScenarioFailedActionInfo

FailedActionInfo mScenarioFailedActionInfo

Package atg.scenario.dms

Class atg.scenario.dms.BatchTimerMessage extends atg.scenario.dms.TimerMessage implements Serializable

Serialized Fields

mScenarioInstanceIds

java.lang.String[] mScenarioInstanceIds

Class atg.scenario.dms.InstanceTimerMessage extends atg.scenario.dms.TimerMessage implements Serializable

Serialized Fields

mScenarioInstanceId

java.lang.String mScenarioInstanceId

mSegmentStart

boolean mSegmentStart

Class atg.scenario.dms.ScenarioUpdateMessage extends java.lang.Object implements Serializable

Serialized Fields

mScenarioName

java.lang.String mScenarioName

Class atg.scenario.dms.SlotItemRequestMessage extends DASMessage implements Serializable

Serialized Fields

mSlotName

java.lang.String mSlotName
Name of requesting slot.

Class atg.scenario.dms.SlotItemsFilledMessage extends DASMessage implements Serializable

Serialized Fields

mSlotName

java.lang.String mSlotName

Class atg.scenario.dms.TimerMessage extends java.lang.Object implements Serializable

Serialized Fields

mScenarioName

java.lang.String mScenarioName

mSegmentName

java.lang.String mSegmentName

mState

java.lang.String mState

mSchedule

Schedule mSchedule

Package atg.scenario.filter

Class atg.scenario.filter.UserDirectoryFilterConfiguration extends java.lang.Object implements Serializable

Serialized Fields

mAncestorsPropertyName

java.lang.String mAncestorsPropertyName

mRolesPropertyName

java.lang.String mRolesPropertyName

Package atg.scenario.targeting

Class atg.scenario.targeting.RepositoryItemSlot extends Slot implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pIn)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads in the state of this Object from an ObjectInputStream.

Throws:
java.io.IOException - if the stream cannot be read from
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Writes this object out to an ObjectOutputStream.

Throws:
java.io.IOException - if this object cannot be written

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
On deserialization, try to replace this Slot with the actual slot component registered with Nucleus.

Throws:
java.io.ObjectStreamException
Serialized Fields

mRepositoryName

java.lang.String mRepositoryName
The repository whose items will populate this slot


mRepositoryPath

java.lang.String mRepositoryPath
The nucleus path of the repository


mItemDescriptorName

java.lang.String mItemDescriptorName
The name of the item descriptor whose items will populate this slot


mRepositoryRegistry

atg.repository.nucleus.RepositoryRegistryService mRepositoryRegistry
Repository registry


mRepository

Repository mRepository
The resolved actual Repository instance containing the items.


mRepositoryView

RepositoryView mRepositoryView
The resolved actual RepositoryView that we talk to to do item queries.


mProfile

Profile mProfile
The User Profile for session scoped RepositoryItemSlots


mRelativePathName

java.lang.String mRelativePathName
The relative path name to this RepositoryItemSlot wrt


mPersistent

boolean mPersistent
Persistence flag indicating whether or not the RepositoryItemSlot should be stored in the User Profile Repository. False by default.


mTransactionManager

javax.transaction.TransactionManager mTransactionManager
The TransactionManager used to persist RepositoryItemsSlots to the repository. Default value is null.

Class atg.scenario.targeting.Slot extends GenericService implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pIn)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads in the state of this Object from an ObjectInputStream.

Throws:
java.io.IOException - if the stream cannot be read from
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Writes this object out to an ObjectOutputStream.

Throws:
java.io.IOException - if this object cannot be written

readResolve

java.lang.Object readResolve()
                       throws java.io.ObjectStreamException
On deserialization, try to replace this Slot with the actual slot component registered with Nucleus.

Throws:
java.io.ObjectStreamException
Serialized Fields

mGeneration

int mGeneration
Generation mode


mRetrieval

int mRetrieval
Retrieval mode


mOrdering

int mOrdering
Ordering mode


mMaxRenderSize

int mMaxRenderSize
Render size property.


mAllowDuplicates

boolean mAllowDuplicates
flag controlling whether duplicates are allowed or not


mOffset

int mOffset
Pointer into mItemList for consumption/rotation of retrieved items. Always indicates the starting offset into mItemList for a retrieval.


mItemList

java.util.ArrayList<E> mItemList
Current list of items. For DESTRUCTIVE_RETRIEVAL, it may have leading items up to mStart that have been consumed by rendering as indicated by mOffset.


mEntryMap

java.util.HashMap<K,V> mEntryMap
Current map of items to entries. Does not include items consumed by destructive retrieval.


mDirty

boolean mDirty
Flag indicating that a modification may have disturbed the ordering of the list.


mVaryingPriority

boolean mVaryingPriority
Optimization flag indicating that at some point in its life, this slot has seen items with a non-default priority. If the priority feature is never used, sorting will be disabled, which is a performance win.


mValueType

java.lang.Class<T> mValueType
If specified, contains the type of values held by the slot


mMessageSourcePath

java.lang.String mMessageSourcePath
The mucleus path to the DSS message source

Class atg.scenario.targeting.Slot.SlotEntry extends java.lang.Object implements Serializable

Serialized Fields

priority

int priority

item

java.lang.Object item

Package atg.search.query.formhandlers

Class atg.search.query.formhandlers.FakeDocumentSetConstraint extends java.lang.Object implements Serializable

Serialized Fields

mXml

java.lang.String mXml

Class atg.search.query.formhandlers.HashMapMap extends java.util.HashMap implements Serializable

Serialized Fields

mParentMap

HashMapMap mParentMap

Package atg.search.query.messages

Class atg.search.query.messages.BrowseMessage extends SearchMessage implements Serializable

serialVersionUID: 8232517716450306774L

Class atg.search.query.messages.CategorizeMessage extends SearchMessage implements Serializable

serialVersionUID: -9221244781975124687L

Class atg.search.query.messages.QueryMessage extends SearchMessage implements Serializable

serialVersionUID: 178121726090208258L

Serialized Fields

mQueryText

java.lang.String mQueryText

Class atg.search.query.messages.SearchMessage extends java.lang.Object implements Serializable

serialVersionUID: 8152967923926171318L

Serialized Fields

mClientRequest

ClientRequest mClientRequest

mResults

Results mResults

mUserProfile

RepositoryItem mUserProfile

mSiteName

java.lang.String mSiteName

mOptionSetName

java.lang.String mOptionSetName

Class atg.search.query.messages.SimilarDocsMessage extends SearchMessage implements Serializable

serialVersionUID: -7957447009448289446L

Class atg.search.query.messages.StructuredQueryMessage extends SearchMessage implements Serializable

serialVersionUID: -897032445775764781L

Serialized Fields

mQueryText

java.lang.String mQueryText

mExcludeQueryText

java.lang.String mExcludeQueryText

Class atg.search.query.messages.ViewInContextMessage extends SearchMessage implements Serializable

serialVersionUID: 421352553544680272L


Package atg.security

Class atg.security.AccessControlEntry extends java.lang.Object implements Serializable

Serialized Fields

mPersona

Persona mPersona
The persona to which these rights are assigned.


mRights

AccessRight[] mRights
Access rights assigned to the persona.


mNegative

boolean mNegative
Flags that modify the behavior of the rights.

Class atg.security.AccessControlList extends java.lang.Object implements Serializable

Serialized Fields

mAcl

AccessControlEntry[] mAcl
The access control entries that make up this list.


mReadOnly

boolean mReadOnly
If true, this ACL cannot be modified.


mName

java.lang.String mName
The assigned name of this ACL. This exists only for java.security.acl compatibility.

Class atg.security.AccessRightsPropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mAccessRightsProperty

java.lang.String mAccessRightsProperty

mAncestorOrganizationsProperty

java.lang.String mAncestorOrganizationsProperty

mOrganizationRolesProperty

java.lang.String mOrganizationRolesProperty

mParentOrganizationProperty

java.lang.String mParentOrganizationProperty

mRolesProperty

java.lang.String mRolesProperty

mSecondaryOrganizationsProperty

java.lang.String mSecondaryOrganizationsProperty

mTemplateRolesProperty

java.lang.String mTemplateRolesProperty

Class atg.security.AccountExistsException extends SecurityException implements Serializable

Class atg.security.AliasedPersona extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads a serialized version of this class, restoring the real user authority from the serialized version.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Writes out a serialized version of this class, substituting a serializable object for the user authority.

Throws:
java.io.IOException
Serialized Fields

mName

java.lang.String mName
Our name according to the user authority that we came from.


mPersona

Persona mPersona
The persona that we're an alias for.

Class atg.security.Base16Encoder extends java.lang.Object implements Serializable

Class atg.security.Base64Encoder extends java.lang.Object implements Serializable

Class atg.security.ClientAccount extends atg.rmi.RemoteExceptionManager implements Serializable

Serialized Fields

mAccountManager

ClientAccountManager mAccountManager

mAccount

RemoteAccount mAccount
The RMI-accessible version of the account object.


mCacheInvalid

boolean mCacheInvalid
True if cached data needs to be updated.

See Also:
ClientAccount.invalidate(), ClientAccount.refresh()

mAccountName

java.lang.String mAccountName
The cached value of the account name.


mType

int mType
The cached value of the account type.


mAttributes

java.util.Map<K,V> mAttributes
The cached values of all attributes.


mGroups

java.util.Set<E> mGroups
The cached values of all groups.


mMembers

java.util.Set<E> mMembers
The cached values of all members.


mDisplayNames

java.util.Map<K,V> mDisplayNames
Display names for all account attributes.

Class atg.security.ClientAccountManager extends atg.rmi.RemoteExceptionManager implements Serializable

Serialized Fields

mRemoteManager

RemoteAccountManager mRemoteManager
The RMI-accessible account manager object.


mCacheTimeout

int mCacheTimeout
The number of seconds that an account cache entry is valid for.


mAccountCache

java.util.HashMap<K,V> mAccountCache
A cache of account information.


mDescriptionAttribute

java.lang.String mDescriptionAttribute
Local copy of the name of the attribute used for storing the description of a group or privilege account.


mFirstNameAttribute

java.lang.String mFirstNameAttribute
Local copy of the name of the attribute used for storing the first name of a login account owner.


mLastNameAttribute

java.lang.String mLastNameAttribute
Local copy of the name of the attribute used for storing the last name of a login account owner.


mPasswordAttribute

java.lang.String mPasswordAttribute
Local copy of the name of the attribute used for storing the password for a login account.

Class atg.security.ClientSecuredObjectImpl extends java.lang.Object implements Serializable

Serialized Fields

mAccessRightNames

java.lang.String[] mAccessRightNames

mGrantedAccessRightNames

java.lang.String[] mGrantedAccessRightNames

mIsOwnerSupported

boolean mIsOwnerSupported

mIsACLSupported

boolean mIsACLSupported

Class atg.security.DigestPasswordHasher extends java.lang.Object implements Serializable

Serialized Fields

mAlgorithm

java.lang.String mAlgorithm
Name of the digest algorithm to use.


mEncoding

java.lang.String mEncoding
Name of the encoding system to use to convert the encrypted password into a string.

Class atg.security.GenericAccessRight extends java.lang.Object implements Serializable

Serialized Fields

mName

java.lang.String mName

mDisplayName

java.lang.String mDisplayName

mDescription

java.lang.String mDescription

Class atg.security.GenericCertificateParser extends GenericService implements Serializable

Serialized Fields

mCertificateType

java.lang.String mCertificateType

mFactory

java.security.cert.CertificateFactory mFactory

Class atg.security.GenericCertificateUserAuthority.CertificatePersona extends AliasedPersona implements Serializable

Class atg.security.GenericDefaultGroupPersona extends GenericPersona implements Serializable

Class atg.security.GenericGroupPersona extends GenericPersona implements Serializable

Class atg.security.GenericLoginPersona extends GenericPersona implements Serializable

Class atg.security.GenericPersona extends PersonaAdapter implements Serializable

Class atg.security.GenericSecuredResource extends java.lang.Object implements Serializable

Serialized Fields

mName

java.lang.String mName

mAcl

AccessControlEntry[] mAcl

Class atg.security.GenericSecuredResourceService extends GenericService implements Serializable

Serialized Fields

mName

java.lang.String mName

mChildren

java.util.Hashtable<K,V> mChildren

mAcl

AccessControlEntry[] mAcl

Class atg.security.GenericSecurityDomain extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mName

java.lang.String mName
Name of the security domain. This name is normally used for registering the domain.


mDescription

java.lang.String mDescription
Human-readable discription of the security domain. This is normally used for user interface display.


mAccessRights

AccessRight[] mAccessRights
The access rights that this security domain provides.


mCreationRightsAttribute

java.lang.String mCreationRightsAttribute
Name of the Persona attribute that contains the access rights for the default ACL when using createResource().

See Also:
GenericSecurityDomain.createResource(java.lang.Object, java.lang.Object, atg.security.AccessControlEntry[]), Persona.getAttribute(java.lang.String)

Class atg.security.GroupExistsException extends SecurityException implements Serializable

Class atg.security.ImplementationSecurityException extends SecurityException implements Serializable

Serialized Fields

mThrowable

java.lang.Throwable mThrowable
The throwable that is being wrapped.

Class atg.security.InvalidAccessControlEntryException extends SecurityException implements Serializable

Class atg.security.InvalidAccessControlListException extends SecurityException implements Serializable

Class atg.security.InvalidAccessRightException extends SecurityException implements Serializable

Class atg.security.InvalidAttributeException extends SecurityException implements Serializable

Class atg.security.InvalidPermissionException extends SecurityException implements Serializable

Class atg.security.InvalidPersonaException extends SecurityException implements Serializable

Class atg.security.InvalidResourceException extends SecurityException implements Serializable

Class atg.security.iPlanetSSHAAccountPasswordHasher extends iPlanetSSHAPasswordHasher implements Serializable

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Writes out a serialized version of this class, substituting a remote serializable object for the salt fetcher.

Throws:
java.io.IOException
Serialized Fields

mRemoteSaltFetcher

atg.security.RemoteSaltFetcher mRemoteSaltFetcher
RemoteSaltFetcher used by the client

Class atg.security.iPlanetSSHAPasswordHasher extends GenericService implements Serializable

Class atg.security.MD5PasswordHasher extends java.lang.Object implements Serializable

serialVersionUID: -419676039821013345L

Serialized Fields

mInitialHashState

java.lang.Long mInitialHashState
Value used to initialize hasher to a unique state.

Class atg.security.NoSuchAccountException extends SecurityException implements Serializable

Class atg.security.NoSuchGroupException extends SecurityException implements Serializable

Class atg.security.NoSuchUserException extends SecurityException implements Serializable

Class atg.security.NullEncoder extends java.lang.Object implements Serializable

Class atg.security.NullPasswordHasher extends java.lang.Object implements Serializable

Class atg.security.PasswordHasher2Adapter extends java.lang.Object implements Serializable

Class atg.security.PermissionDeniedException extends SecurityException implements Serializable

Class atg.security.PersonaAdapter extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads a serialized version of this class, restoring the real user authority from the serialized version.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Writes out a serialized version of this class, substituting a serializable object for the user authority.

Throws:
java.io.IOException
Serialized Fields

mName

java.lang.String mName
The name of the persona (eg account name).


mSubPersonae

Persona[] mSubPersonae
Any personae that this persona has for roles.


mReadOnly

boolean mReadOnly
If true, this persona may not be modified.

Class atg.security.Privilege extends GenericAccessRight implements Serializable

Class atg.security.RuntimeSecurityException extends java.lang.RuntimeException implements Serializable

Serialized Fields

mSecurityException

SecurityException mSecurityException
The security exception that we're embedding in a runtime exception.

Class atg.security.SaltedDigestPasswordHasher extends PasswordHasher2Adapter implements Serializable

Serialized Fields

mHashKey

java.lang.Long mHashKey
Hash key used to make login password hashes unique.


mAlgorithm

java.lang.String mAlgorithm
Name of the digest algorithm to use.


mEncoding

java.lang.String mEncoding
Name of the encoding system to use to convert the encrypted password into a string.

Class atg.security.SaltedMD5PasswordHasher extends PasswordHasher2Adapter implements Serializable

Serialized Fields

mInitialHashState

java.lang.Long mInitialHashState
Value used to initialize hasher to a unique state.

Class atg.security.SavedPersona extends java.lang.Object implements Serializable

Serialized Fields

mPersonaName

java.lang.String mPersonaName
The name of the persona such that it can be resolved out of its user authority.


mUserAuthorityName

java.lang.String mUserAuthorityName
The name of the user authority to use to resolve the persona.

Class atg.security.SecurityException extends ContainerException implements Serializable

Class atg.security.SerializedProxyUserAuthority extends GenericUserAuthority implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads a serialized version of this class, restoring the real user authority from the serialized version.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Writes out a serialized version of this class, substituting a serializable object for the user authority.

Throws:
java.io.IOException
Serialized Fields

mLookupAuthority

RemoteUserAuthority mLookupAuthority
The user authority to use for persona lookups.

Class atg.security.StandardAccessRightsMap extends java.util.HashMap implements Serializable

Class atg.security.TooManyAccountsException extends SecurityException implements Serializable

Serialized Fields

mAllowed

int mAllowed
The number of accounts that the account manager will allow us to have. If zero, this number was not specified.


mRequested

int mRequested
The number of accounts that the request would have returned. If zero, this number was not specified.

Class atg.security.UnsupportedFeatureSecurityException extends SecurityException implements Serializable

Class atg.security.User extends java.lang.Object implements Serializable

serialVersionUID: -3554416276507000965L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
This writes out a User object's information, substituting SerializedUserAuthority objects for user authorities.

Throws:
java.io.IOException

Package atg.security.proxy

Class atg.security.proxy.InvalidSessionException extends java.rmi.RemoteException implements Serializable


Package atg.server.tcp

Class atg.server.tcp.DisallowedConnectionException extends java.lang.Exception implements Serializable


Package atg.service.cache

Class atg.service.cache.Cache extends GenericService implements Serializable

serialVersionUID: -6528156632490377511L

Serialized Fields

mAdapter

CacheAdapter mAdapter
The adapter which knows how to get objects not found in the cache


mMaximumCacheEntries

int mMaximumCacheEntries
The maximum number of entries in the cache.
0 = Cache nothing, but continue to get objects from the CacheAdapter
-1 = Unlimited


mMaximumCacheSize

int mMaximumCacheSize
The maximum number of bytes in the cache.
0 = Cache nothing, but continue to get objects from the CacheAdapter
-1 = Unlimited


mMaximumEntrySize

int mMaximumEntrySize
The maximum number of bytes in a single cache entry.
0 = Cache nothing, but continue to get objects from the CacheAdapter
-1 = Unlimited


mMaximumEntryLifetime

long mMaximumEntryLifetime
The maximum number of msec that an entry will live in the cache.
0 = Cache nothing, but continue to get objects from the CacheAdapter
-1 = Unlimited


mAccessCount

int mAccessCount
The number of accesses


mHitCount

int mHitCount
The number of hits


mTimeoutCount

int mTimeoutCount
The number of invalidations due to timeouts


mUsedMemory

int mUsedMemory
The number of bytes taken up in memory


mMap

atg.service.cache.UnhashcodingHashtable mMap
The mapping from key to value


inProgress

java.util.Hashtable<K,V> inProgress
list of what's being d/l'ed


mLRU

atg.service.cache.Cache.Entry mLRU
The LRU


mMRU

atg.service.cache.Cache.Entry mMRU
The MRU

Class atg.service.cache.UnhashcodingHashtable extends java.util.Dictionary implements Serializable

serialVersionUID: 1421746759512286392L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

threshold

int threshold

loadFactor

float loadFactor

Package atg.service.collections.filter.scenario

Class atg.service.collections.filter.scenario.FilterComponentChoiceExpression extends atg.ui.expreditor.targeting.ComponentChoiceExpression implements Serializable


Package atg.service.datacollection

Class atg.service.datacollection.FormatField extends java.lang.Object implements Serializable

Serialized Fields

mDateFormat

java.text.SimpleDateFormat mDateFormat
cache a date format object to format successive Date fields


mName

java.lang.String mName

mType

int mType

mFormat

java.lang.String mFormat

Class atg.service.datacollection.LogRotationMessage extends java.lang.Object implements Serializable

serialVersionUID: -4084135273665176015L

Serialized Fields

mType

java.lang.String mType

mServerId

java.lang.String mServerId

mLogFilePath

java.lang.String mLogFilePath

mLogFileAbsolutePath

java.lang.String mLogFileAbsolutePath

mTimestamp

long mTimestamp

mTimestampAsDate

java.util.Date mTimestampAsDate

Class atg.service.datacollection.SQLColumnMapping extends java.lang.Object implements Serializable

Serialized Fields

mName

java.lang.String mName

mColumnName

java.lang.String mColumnName

mType

int mType

mUpdateMethod

int mUpdateMethod

Package atg.service.email

Class atg.service.email.EmailException extends java.lang.Exception implements Serializable

Serialized Fields

mRootCause

java.lang.Throwable mRootCause
The root exception that caused this exception

Class atg.service.email.EmailInvalidSenderException extends EmailException implements Serializable

Serialized Fields

mRootCause

java.lang.Throwable mRootCause

mInvalidSenderAddress

java.lang.String mInvalidSenderAddress

Package atg.service.event

Class atg.service.event.ConfigurableAction extends java.lang.Object implements Serializable

serialVersionUID: -7887872585197941850L

Serialized Fields

mModifiedPropertyName

java.lang.String mModifiedPropertyName

mOperator

byte mOperator

mModifierPropertyName

java.lang.String mModifierPropertyName

mModifierStringValue

java.lang.String mModifierStringValue

mModifierConvertedValue

java.lang.Object mModifierConvertedValue

Class atg.service.event.EventException extends java.lang.Exception implements Serializable

Serialized Fields

mSourceException

java.lang.Throwable mSourceException

Class atg.service.event.GenericEvent extends java.util.EventObject implements Serializable

serialVersionUID: -1954235688796736522L

Serialized Fields

mTime

long mTime
The time in milliseconds when the event was fired.


mType

int mType
The type of this event.


mDate

java.util.Date mDate
The time as a Date when the event was fired.


mTimestamp

java.sql.Timestamp mTimestamp
The time as a Timestamp when the event was fired

Class atg.service.event.QueuedAction extends java.lang.Object implements Serializable

serialVersionUID: 3476159017802960285L

Serialized Fields

mActions

atg.service.event.ConfigurableAction[] mActions

mEvent

java.lang.Object mEvent

Package atg.service.idgen

Class atg.service.idgen.IdGeneratorException extends ContainerException implements Serializable

Class atg.service.idgen.IdSpace extends java.lang.Object implements Serializable

Serialized Fields

mName

java.lang.String mName
name of the space


mSeed

long mSeed
seed to use for calculating ids in some sequence


mLastSeed

long mLastSeed
last seed we can safely use before retrieving another batch


mBatchSize

int mBatchSize
The number of seeds to reserve at one time. This is a hint for id generators that reserve ids in batches.


mIdsPerBatch

int mIdsPerBatch
The number of ids to give out from each reserved batch of ids. This property is not used by all id generators.


mPrefix

java.lang.String mPrefix
prefix to use when generating String ids


mSuffix

java.lang.String mSuffix
description: suffix to use when generating String ids


mUsedLongIds

java.util.Set<E> mUsedLongIds
long ids that have been given out, used by id generators that need to track each id given out. This property is not persisted.


Package atg.service.jdbc

Class atg.service.jdbc.SQLTransactionRollbackException extends java.sql.SQLException implements Serializable

Serialized Fields

mException

javax.transaction.RollbackException mException

Package atg.service.lockmanager

Class atg.service.lockmanager.DeadlockException extends java.lang.Exception implements Serializable

Class atg.service.lockmanager.LockManagerException extends ContainerException implements Serializable

Class atg.service.lockmanager.RetryEntryException extends java.lang.Exception implements Serializable

Class atg.service.lockmanager.TimeExceededException extends java.lang.Exception implements Serializable


Package atg.service.perfmonitor

Class atg.service.perfmonitor.PerformanceHashtable extends java.util.Hashtable implements Serializable

Serialized Fields

mTotals

PerformanceData mTotals
The PerformanceData object which stores all the totals for all the PerformanceData objects contained within this Hashtable.

Class atg.service.perfmonitor.PerfStackMismatchException extends java.lang.RuntimeException implements Serializable


Package atg.service.pipeline

Class atg.service.pipeline.ChainTimeoutException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.CopyChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.CreateChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.CreateLinkException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.DisableChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.DuplicateChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.EnableChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.InvalidTagException extends ContainerException implements Serializable

Class atg.service.pipeline.LockChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.PipelineChain extends java.lang.Object implements Serializable

Serialized Fields

mLinkTable

java.util.Hashtable<K,V> mLinkTable
This table keeps track of all the links in this chain and is used for getting links quickly


mChainId

java.lang.String mChainId

mParentChainContext

atg.service.pipeline.PipelineChainContext mParentChainContext

mHeadLink

PipelineLink mHeadLink

mTransactionMode

int mTransactionMode

Class atg.service.pipeline.PipelineChainContext extends java.lang.Object implements Serializable

Serialized Fields

mRunners

int mRunners

mChainId

java.lang.String mChainId

mLockAcquiredTime

long mLockAcquiredTime

mLockReleasedTime

long mLockReleasedTime

mPipelineChain

PipelineChain mPipelineChain

mChainLocked

boolean mChainLocked

mEnabled

boolean mEnabled

mPipelineChainClassname

java.lang.String mPipelineChainClassname

mPipelineResultClassname

java.lang.String mPipelineResultClassname

Class atg.service.pipeline.PipelineInitializationException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.PipelineLink extends java.lang.Object implements Serializable

Serialized Fields

mLinkTable

atg.core.util.IntHashtable mLinkTable

mId

java.lang.String mId

mParentChain

PipelineChain mParentChain

mTransactionMode

int mTransactionMode

mProcessorMode

java.lang.String mProcessorMode

mProcessorClass

java.lang.String mProcessorClass

mProcessorRetCodes

int[] mProcessorRetCodes

Class atg.service.pipeline.PipelineManagerException extends ContainerException implements Serializable

Class atg.service.pipeline.RemoveChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.ReplaceChainException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.RunProcessException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.TransitionException extends PipelineManagerException implements Serializable

Class atg.service.pipeline.UnlockChainException extends PipelineManagerException implements Serializable


Package atg.service.resourcepool

Class atg.service.resourcepool.JNDIEnvironment extends java.util.Hashtable implements Serializable

Serialized Fields

mOtherProperties

java.util.Properties mOtherProperties

Class atg.service.resourcepool.MonitoredAttribute extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

javax.naming.directory.Attribute mWrapped

mLog

ApplicationLogging mLog

mResourceObject

ResourceObject mResourceObject

mId

java.lang.String mId

Class atg.service.resourcepool.MonitoredAttributes extends java.lang.Object implements Serializable

Serialized Fields

mWrapped

javax.naming.directory.Attributes mWrapped

mLog

ApplicationLogging mLog

mResourceObject

ResourceObject mResourceObject

mId

java.lang.String mId

Class atg.service.resourcepool.MonitoredBinding extends javax.naming.Binding implements Serializable

Serialized Fields

mWrapped

javax.naming.Binding mWrapped

mLog

ApplicationLogging mLog

mResourceObject

ResourceObject mResourceObject

mId

java.lang.String mId

Class atg.service.resourcepool.MonitoredSearchResult extends javax.naming.directory.SearchResult implements Serializable

Serialized Fields

mWrapped

javax.naming.directory.SearchResult mWrapped

mLog

ApplicationLogging mLog

mResourceObject

ResourceObject mResourceObject

mId

java.lang.String mId

Class atg.service.resourcepool.ResourcePoolException extends java.lang.Exception implements Serializable


Package atg.service.scheduler

Class atg.service.scheduler.AbsoluteSchedule extends java.lang.Object implements Serializable

serialVersionUID: 1025405285972027048L

Serialized Fields

mJobTime

long mJobTime
The time the job is to occur


mHashCode

int mHashCode
The hash code

Class atg.service.scheduler.CalendarSchedule extends java.lang.Object implements Serializable

serialVersionUID: -4858549084515373757L

Serialized Fields

sMonthNames

java.lang.String[] sMonthNames
The list of months


sDayOfTheWeekNames

java.lang.String[] sDayOfTheWeekNames
The list of days of the week


sDaysInMonth

int[] sDaysInMonth
The list of the number of days in each month


mParseString

java.lang.String mParseString
Cached parse string


mMonths

boolean[] mMonths
The list of months


mDates

boolean[] mDates
The list of dates


mDaysOfTheWeek

boolean[] mDaysOfTheWeek
The list of days of the week


mOccurrencesInTheMonth

boolean[] mOccurrencesInTheMonth
The list of occurrences of days of the week in the month


mHours

boolean[] mHours
The list of hours


mNextHours

int[] mNextHours
The list of next hours


mMinutes

boolean[] mMinutes
The list of minutes


mNextMinutes

int[] mNextMinutes
The list of next minutes


mDfs

java.text.DateFormatSymbols mDfs

mHashCode

int mHashCode
The hash code


mRegenerateParseString

boolean mRegenerateParseString

Class atg.service.scheduler.PeriodicSchedule extends java.lang.Object implements Serializable

serialVersionUID: 8596900509863218209L

Serialized Fields

mDelay

long mDelay
The delay before the first job


mPeriod

long mPeriod
The period between jobs


mShouldCatchUp

boolean mShouldCatchUp
The flag indicating if this should catch up lost jobs


mHashCode

int mHashCode
The hash code


mValidUnits

java.lang.String[] mValidUnits
The valid units of time from the resource file


mConversionIsMult

boolean[] mConversionIsMult
Whether the conversion is multiplication (false -> division)


mUnitConversion

int[] mUnitConversion
The factor which applied to this unit produces seconds

Class atg.service.scheduler.RelativeSchedule extends AbsoluteSchedule implements Serializable

serialVersionUID: -7799368673368353817L

Serialized Fields

mValidUnits

java.lang.String[] mValidUnits
The valid units of time from the resource file


mConversionIsMult

boolean[] mConversionIsMult
Whether the conversion is multiplication (false -> division)


mUnitConversion

int[] mUnitConversion
The factor which applied to this unit produces seconds


Package atg.service.statistics

Class atg.service.statistics.SampleEvent extends java.util.EventObject implements Serializable

serialVersionUID: -5132655390604281698L

Serialized Fields

mSamples

Sample[] mSamples
The list of samples


Package atg.service.util

Class atg.service.util.CurrentDate extends GenericService implements Serializable

Serialized Fields

mYear

int mYear

mMonth

int mMonth

mMonthName

java.lang.String mMonthName

mShortMonthName

java.lang.String mShortMonthName

mDate

int mDate

mHour

int mHour

mMinute

int mMinute

mSecond

int mSecond

mDayOfWeek

int mDayOfWeek

mDayOfWeekName

java.lang.String mDayOfWeekName

mShortDayOfWeekName

java.lang.String mShortDayOfWeekName

mDayOfWeekInMonth

int mDayOfWeekInMonth

mWeekOfMonth

int mWeekOfMonth

mDateAsDate

java.util.Date mDateAsDate

mHourAsDate

java.util.Date mHourAsDate

mMinuteAsDate

java.util.Date mMinuteAsDate

mSecondAsDate

java.util.Date mSecondAsDate

mMinimizeDateConstruction

boolean mMinimizeDateConstruction

mTimeIsSet

boolean mTimeIsSet
Flag if the time has been set explicitly


mSetTime

long mSetTime

mSetDate

java.util.Date mSetDate

mSetTimestamp

java.sql.Timestamp mSetTimestamp

mNextDate

long mNextDate
The next day when the cached date should be reset


mNextHour

long mNextHour
The next hour when the cached date should be reset


mNextMinute

long mNextMinute
The next minute when the cached date should be reset


mNextSecond

long mNextSecond
The next second when the cached date should be reset

Class atg.service.util.SchedulableDate extends CurrentDate implements Serializable

Serialized Fields

mUpdateJobId

int mUpdateJobId

mScheduler

Scheduler mScheduler

mUpdateSchedule

Schedule mUpdateSchedule

mUpdateJobName

java.lang.String mUpdateJobName

mUpdateJobDescription

java.lang.String mUpdateJobDescription

Package atg.service.webappregistry

Class atg.service.webappregistry.WebApp extends java.lang.Object implements Serializable

serialVersionUID: 4176985803675433406L

Serialized Fields

mWebAppStateEnum

atg.service.webappregistry.WebApp.WebAppState mWebAppStateEnum

mProperties

java.util.Properties mProperties

Class atg.service.webappregistry.WebAppEvent extends GenericEvent implements Serializable

Serialized Fields

mWebApp

WebApp mWebApp

Class atg.service.webappregistry.WebAppRegistryAdminServlet extends ServiceAdminServlet implements Serializable

Class atg.service.webappregistry.WebAppRegistryException extends ContainerException implements Serializable


Package atg.servlet

Class atg.servlet.BrowserType extends java.lang.Object implements Serializable

serialVersionUID: 2816395404740359387L

Serialized Fields

mName

java.lang.String mName

mDisplayName

java.lang.String mDisplayName
Name to display in the UI


mPatterns

java.lang.String[] mPatterns

Class atg.servlet.ContainerServletException extends javax.servlet.ServletException implements Serializable

Class atg.servlet.DynamoPageServlet extends javax.servlet.GenericServlet implements Serializable

Serialized Fields

mParameters

java.util.Dictionary<K,V> mParameters

Class atg.servlet.ExtensionMimeTyper extends TimedOperationService implements Serializable

Serialized Fields

mExtensionToMimeType

java.lang.String[] mExtensionToMimeType

mCaseSensitive

boolean mCaseSensitive

mDefaultMimeType

java.lang.String mDefaultMimeType

mDefaultMimeTyper

boolean mDefaultMimeTyper

mTable

java.util.Dictionary<K,V> mTable

Class atg.servlet.NameContextNotInitializedException extends java.lang.Exception implements Serializable

Class atg.servlet.SessionBindingReporter extends java.lang.Object implements Serializable

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mContextIds

java.util.ArrayList<E> mContextIds

Class atg.servlet.SessionNameContext extends GenericContext implements Serializable

Serialization Methods

readExternal

public void readExternal(java.io.ObjectInput arg0)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeExternal

public void writeExternal(java.io.ObjectOutput arg0)
                   throws java.io.IOException
Throws:
java.io.IOException

Class atg.servlet.SessionNameContext.SessionNameContextAdminServlet extends ServiceAdminServlet implements Serializable

Class atg.servlet.SessionRestoredMarker extends java.lang.Object implements Serializable

Serialized Fields

mParentId

java.lang.String mParentId

Class atg.servlet.WrappingFileServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

mWrappedServlet

javax.servlet.Servlet mWrappedServlet

Class atg.servlet.WrappingSessionNameContext extends java.lang.Object implements Serializable


Package atg.servlet.exittracking

Class atg.servlet.exittracking.ExitTrackingEvent extends java.util.EventObject implements Serializable

serialVersionUID: -1617330141066722432L

Serialized Fields

mHandlerURL

java.lang.String mHandlerURL
The Handler URL


mHandlerParameterName

java.lang.String mHandlerParameterName
Parameters to be passed to the Handler URL


Package atg.servlet.pagecompile

Class atg.servlet.pagecompile.AutoCompileException extends java.lang.Exception implements Serializable

Class atg.servlet.pagecompile.PageCompileException extends java.lang.Exception implements Serializable

Serialized Fields

mRootCause

java.lang.Throwable mRootCause

Class atg.servlet.pagecompile.PageProcessor.EncodingChangeException extends java.lang.RuntimeException implements Serializable

Class atg.servlet.pagecompile.PageSubServlet extends atg.servlet.DynamoPageServlet implements Serializable

Serialized Fields

mServlet

javax.servlet.Servlet mServlet

mParameterServlet

ParameterServlet mParameterServlet

mParent

javax.servlet.Servlet mParent

mServletScope

int mServletScope

mLastServletName

java.lang.String mLastServletName

Package atg.servlet.pipeline

Class atg.servlet.pipeline.PipelineableServletAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mResources

java.util.ResourceBundle mResources

Package atg.servlet.security

Class atg.servlet.security.PathSecurityDomain extends GenericSecurityDomain implements Serializable

Serialized Fields

mCache

java.util.Dictionary<K,V> mCache
Cache of key/SecuredResource mappings


mCacheResults

boolean mCacheResults
Should we cache results?


mKeys

java.lang.String[] mKeys
List of Resource Keys sorted by length; these keys are set by setSecuredResource call


mEnabled

boolean mEnabled
Is this servlet enabled inside of the pipline?


mSecuredResources

ServiceMap mSecuredResources
A list of resources protected by this SecurityDomain

Class atg.servlet.security.SecuredPathAccessController extends GenericSecuredResourceService implements Serializable

Serialized Fields

mEnabled

boolean mEnabled
Is access control enabled?


mUserAuthority

UserAuthority mUserAuthority
UserAuthority with which the resolved User variable should be resolved


mAllowGroups

java.lang.String[] mAllowGroups
An array of group names for which access is allowed


mAllowPersonae

Persona[] mAllowPersonae

mAllowPersonaeSet

boolean mAllowPersonaeSet

mDenyGroups

java.lang.String[] mDenyGroups
An array of group names for which access is denied


mDenyPersonae

Persona[] mDenyPersonae

mDenyPersonaeSet

boolean mDenyPersonaeSet

Package atg.targeting

Class atg.targeting.RuleBasedRepositoryItemGroupConfiguration extends atg.repository.RepositoryItemGroupConfiguration implements Serializable

Serialized Fields

mRepositoryGroupRules

java.lang.String mRepositoryGroupRules

mRepositoryGroupRuleString

StringList mRepositoryGroupRuleString

Class atg.targeting.TargetingException extends ContainerException implements Serializable

Class atg.targeting.TargetingValidationException extends atg.targeting.TargetingException implements Serializable


Package atg.userdirectory

Class atg.userdirectory.DirectoryModificationException extends ContainerException implements Serializable

Class atg.userdirectory.RoleNotAssignableException extends DirectoryModificationException implements Serializable

Class atg.userdirectory.TooManyResponsesException extends atg.userdirectory.UserDirectoryException implements Serializable

Class atg.userdirectory.UserDirectoryException extends java.lang.Exception implements Serializable

Serialized Fields

mDirectory

UserDirectory mDirectory

Package atg.userprofiling

Class atg.userprofiling.ContentEvent extends GenericEvent implements Serializable

serialVersionUID: -267510615635798251L

Serialized Fields

mRequest

DynamoHttpServletRequest mRequest

mContent

ContentRepositoryItem mContent

mProfile

RepositoryItem mProfile

mTargeter

Targeter mTargeter

mUpdatedItem

RepositoryItem mUpdatedItem

Class atg.userprofiling.ContentTypeEvent extends GenericEvent implements Serializable

serialVersionUID: 4308066443766764806L

Serialized Fields

mRequest

DynamoHttpServletRequest mRequest

mContent

ContentRepositoryItem mContent

mProfile

RepositoryItem mProfile

mTargeter

Targeter mTargeter

mUpdatedItem

RepositoryItem mUpdatedItem

Class atg.userprofiling.DynamicProfileBeanInfo extends java.lang.Object implements Serializable

serialVersionUID: -5986572596252602361L

Serialized Fields

mBeanDescriptor

DynamicBeanDescriptor mBeanDescriptor

mPropertyDescriptorTable

java.util.Dictionary<K,V> mPropertyDescriptorTable

mPropertyNames

java.lang.String[] mPropertyNames

mPropertyDescriptors

DynamicPropertyDescriptor[] mPropertyDescriptors

mDataSourceItemDescriptor

RepositoryItemDescriptor mDataSourceItemDescriptor

Class atg.userprofiling.PageEvent extends GenericEvent implements Serializable

serialVersionUID: -2640383413247253803L

Serialized Fields

mRequest

DynamoHttpServletRequest mRequest
The current request.


mSession

javax.servlet.http.HttpSession mSession
The current session.


mProfile

RepositoryItem mProfile
The current session's profile.


mPath

java.lang.String mPath
The page request path.


mUpdatedItem

RepositoryItem mUpdatedItem
The RepositoryItem that should be able to have batch updates.

Class atg.userprofiling.PasswordChangeException extends ContainerException implements Serializable

Class atg.userprofiling.PasswordRuleCheckerException extends ContainerException implements Serializable

Class atg.userprofiling.ProfileAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mItemDescriptorServlet

atg.repository.nucleus.ItemDescriptorAdminServlet mItemDescriptorServlet

mProfile

Profile mProfile

Class atg.userprofiling.ProfileItemDescriptor extends atg.repository.groups.GroupItemDescriptor implements Serializable

serialVersionUID: -7851406099770404647L

Class atg.userprofiling.ProfileSwapEvent extends java.util.EventObject implements Serializable

Serialized Fields

mPreSwapItem

RepositoryItem mPreSwapItem

mPostSwapItem

RepositoryItem mPostSwapItem

mEventType

int mEventType

mEventName

java.lang.String mEventName

mCachedHash

int mCachedHash

mCachedString

java.lang.String mCachedString

Class atg.userprofiling.RepositoryEnabledConfigurableAction extends atg.service.event.ConfigurableAction implements Serializable

serialVersionUID: 1425542189986084059L

Serialized Fields

mComplainOnMissingItems

boolean mComplainOnMissingItems

mCommitRepositoryUpdates

boolean mCommitRepositoryUpdates

Class atg.userprofiling.SessionEvent extends GenericEvent implements Serializable

serialVersionUID: -1998025957976882219L

Serialized Fields

mRequest

DynamoHttpServletRequest mRequest
The current request.


mSession

javax.servlet.http.HttpSession mSession
The current session.


mProfile

RepositoryItem mProfile
The current session's profile.


mUpdatedItem

RepositoryItem mUpdatedItem
The RepositoryItem that should be able to have batch updates.

Class atg.userprofiling.SSHAPasswordHasher extends iPlanetSSHAPasswordHasher implements Serializable

Serialized Fields

mProfileTools

java.lang.String mProfileTools

Class atg.userprofiling.UserDirectoryUserListItem extends atg.userprofiling.UserListItem implements Serializable

Serialized Fields

mRoleIds

java.lang.String[] mRoleIds

mOrganizationId

java.lang.String mOrganizationId

Class atg.userprofiling.UserListItem extends RepositoryFormHandler implements Serializable

Serialized Fields

mFormHandler

MultiProfileAddFormHandler mFormHandler

Package atg.userprofiling.dms

Class atg.userprofiling.dms.AdminProfilePropertyUpdateMessage extends ProfilePropertyUpdateMessage implements Serializable

Serialized Fields

mAdminProfileId

java.lang.String mAdminProfileId

Class atg.userprofiling.dms.AdminProfileUpdateMessage extends ProfileUpdateMessage implements Serializable

Serialized Fields

mAdminProfileId

java.lang.String mAdminProfileId

Class atg.userprofiling.dms.AdminRegisterMessage extends DPSMessage implements Serializable

Serialized Fields

mAdminProfileId

java.lang.String mAdminProfileId

Class atg.userprofiling.dms.ClickThroughMessage extends DPSMessage implements Serializable

Serialized Fields

mSourcePath

java.lang.String mSourcePath

mDestinationPath

java.lang.String mDestinationPath

mSourceScenarioPathInfo

java.lang.String mSourceScenarioPathInfo

mDestinationScenarioPathInfo

java.lang.String mDestinationScenarioPathInfo

mSourceNames

java.lang.String[] mSourceNames

Class atg.userprofiling.dms.DPSMessage extends DASMessage implements Serializable

Serialized Fields

mProfileId

java.lang.String mProfileId

mSessionId

java.lang.String mSessionId

mScenarioPathInfo

java.lang.String mScenarioPathInfo
The application name


mParentSessionId

java.lang.String mParentSessionId
the id of the parent session, if any

Class atg.userprofiling.dms.EndSessionMessage extends DPSMessage implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pIn)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Sets the members of this message from the given input stream

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Writes out the state of this message, since RepositoryItem is not serializable

Throws:
java.io.IOException
Serialized Fields

mProfile

RepositoryItem mProfile
property: profile

Class atg.userprofiling.dms.InboundEmailMessage extends DASMessage implements Serializable

serialVersionUID: -3476677004182949175L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pIn)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reads in the state of this Object from an ObjectInputStream

Throws:
java.io.IOException - if the stream cannot be read from or a javax.mail.Message could not be constructed from the corresponding byte []
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Writes this object out to an ObjectOutputStream. Since javax.mail.Message is not Serializable, it's turned into a byte [] and written to the OutputStream

Throws:
java.io.IOException - if this object cannot be written
Serialized Fields

mCalculatedAllRecipients

boolean mCalculatedAllRecipients
Whether or not we've already attempted to calculate the total number of recipients. We only want to do that once


mMessageSubject

java.lang.String mMessageSubject
The subject of the email


mOriginalSubject

java.lang.String mOriginalSubject
The original subject of the email, disregarding the standard "Re:" String that accompanies replies


mMessageFrom

java.lang.String mMessageFrom
The email address of the email sender


mMessageTo

java.lang.String[] mMessageTo
An array of email addresses that this email was sent to


mMessageCc

java.lang.String[] mMessageCc
An array of email address that this email was copied to


mMessageRecipients

java.lang.String[] mMessageRecipients
A combination of all the address specified in the "To" and the "Cc" headers


mMessageReplyTo

java.lang.String mMessageReplyTo
The email address that any replies should be sent to


mReceivedDate

java.util.Date mReceivedDate
The date that this email was received


mBounced

boolean mBounced
Whether or not this email was bounced


mSoftBounced

boolean mSoftBounced
Whether or not this email was soft bounced


mBouncedEmailAddress

java.lang.String mBouncedEmailAddress
The email address of the bounced recipient


mReportingBouncedEmailAddressDomain

java.lang.String mReportingBouncedEmailAddressDomain
The email address domain of the bounced recipient


mBouncedStatusCode

java.lang.String mBouncedStatusCode
The status code of the bounced email


mBouncedReplyCode

java.lang.String mBouncedReplyCode
The reply code of the bounced email


mBouncedErrorMessage

java.lang.String mBouncedErrorMessage
The error message of the bounced email


mTrackingData

java.util.Map<K,V> mTrackingData
The tracking data contained in the email


mMessage

javax.mail.Message mMessage
The JavaMail Message object that represents the entire email

Class atg.userprofiling.dms.OutboundEmailMessage extends DASMessage implements Serializable

serialVersionUID: -175546325928714666L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream arg0)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream arg0)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

mType

int mType

mProfileId

java.lang.String mProfileId

mRecipient

java.lang.String mRecipient

mRecipientDomain

java.lang.String mRecipientDomain

mErrorMessage

java.lang.String mErrorMessage

mTrackingData

java.util.Map<K,V> mTrackingData

mMessage

javax.mail.Message mMessage

Class atg.userprofiling.dms.PageVisitMessage extends DPSMessage implements Serializable

Serialized Fields

mScenarioPathInfo

java.lang.String mScenarioPathInfo
the concatenation of the application name, the SCENARIO_PATH_INFO_SEPARATOR, and the context-root-relative path of the request


mPath

java.lang.String mPath

mFolder

java.lang.String mFolder

Class atg.userprofiling.dms.ProfilePropertyUpdateMessage extends DPSMessage implements Serializable

Serialized Fields

mPropertyPath

java.lang.String mPropertyPath

mOldValue

java.lang.Object mOldValue

mNewValue

java.lang.Object mNewValue

mChangeSign

int mChangeSign

mChangeAmount

double mChangeAmount

mChangePercentage

double mChangePercentage

mElementsAdded

java.lang.Object[] mElementsAdded

mElementsRemoved

java.lang.Object[] mElementsRemoved

Class atg.userprofiling.dms.ProfileUpdateMessage extends DPSMessage implements Serializable

Serialized Fields

mChangedProperties

java.util.List<E> mChangedProperties

mOldValues

java.util.Map<K,V> mOldValues

mNewValues

java.util.Map<K,V> mNewValues

Class atg.userprofiling.dms.ReferrerMessage extends DPSMessage implements Serializable

Serialized Fields

mReferrerURL

java.lang.String mReferrerURL

mReferrerSite

java.lang.String mReferrerSite

mReferrerPath

java.lang.String mReferrerPath

Class atg.userprofiling.dms.SiteVisitMessage extends java.lang.Object implements Serializable

Serialized Fields

mProfileId

java.lang.String mProfileId

mSessionId

java.lang.String mSessionId

mDurationInSeconds

long mDurationInSeconds

mSessionCreateTime

java.util.Date mSessionCreateTime

mSessionEndTime

java.util.Date mSessionEndTime

mNumberPageVisits

int mNumberPageVisits

Class atg.userprofiling.dms.ViewItemMessage extends DPSMessage implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream pIn)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstructs the state of this message using the data contained in pIn

Throws:
java.io.IOException - if an IO error occurs
java.lang.ClassNotFoundException - if a referenced class is not found

writeObject

private void writeObject(java.io.ObjectOutputStream pOut)
                  throws java.io.IOException
Saves all of the state of this object. The problem property is mItem, which is of type RepositoryItem. Here we wrap the item in a SerializableRepositoryItem.

Throws:
java.io.IOException - if an IO error occurs
Serialized Fields

mPath

java.lang.String mPath

mRepositoryName

java.lang.String mRepositoryName

mFolder

java.lang.String mFolder

mItemType

java.lang.String mItemType

mRepositoryId

java.lang.String mRepositoryId

mItem

RepositoryItem mItem

Package atg.userprofiling.email

Class atg.userprofiling.email.AdminMailingGroup extends atg.userprofiling.email.TemplateEmailPersister.CountsInfo implements Serializable

Serialized Fields

mNumToSend

int mNumToSend

mMailings

atg.userprofiling.email.AdminMailingItem[] mMailings

Class atg.userprofiling.email.AdminMailingItemImpl extends java.lang.Object implements Serializable

Serialized Fields

mMailingId

java.lang.String mMailingId

mMailingName

java.lang.String mMailingName

mBatched

boolean mBatched

mStartTime

java.sql.Timestamp mStartTime

mEndTime

java.sql.Timestamp mEndTime

mNumToSend

int mNumToSend

mNumSent

int mNumSent

mNumErrors

int mNumErrors

mNumSkipped

int mNumSkipped

mNumBounces

int mNumBounces

mNumSoftBounces

int mNumSoftBounces

mBatchExecutionId

java.lang.String mBatchExecutionId

mUniqServerId

java.lang.String mUniqServerId

mGroup

boolean mGroup

mNumMailings

int mNumMailings

mStatus

java.lang.String mStatus

mCanCancel

boolean mCanCancel

mCanDelete

boolean mCanDelete

mCanResume

boolean mCanResume

Class atg.userprofiling.email.AdminRepositoryMailing extends java.lang.Object implements Serializable

Serialized Fields

mItem

RepositoryItem mItem

mPersister

atg.userprofiling.email.TemplateEmailPersisterImpl mPersister

mStatus

java.lang.String mStatus

Class atg.userprofiling.email.InvalidRecipientAddressException extends TemplateEmailException implements Serializable

Serialized Fields

mInvalidRecipientAddress

java.lang.String mInvalidRecipientAddress
The invalid recipient address


mEmailMessage

javax.mail.Message mEmailMessage
The Message whose recipient field could not be set

Class atg.userprofiling.email.InvalidSenderAddressException extends TemplateEmailException implements Serializable

Serialized Fields

mInvalidSenderAddress

java.lang.String mInvalidSenderAddress

mEmailMessage

javax.mail.Message mEmailMessage

Class atg.userprofiling.email.TemplateEmailAdminServlet extends ServiceAdminServlet implements Serializable

Serialized Fields

mPersister

atg.userprofiling.email.TemplateEmailPersisterImpl mPersister

mBatchPersister

atg.userprofiling.email.TemplateEmailBatchPersisterImpl mBatchPersister

mBatchEmailPeriodicService

atg.userprofiling.email.BatchEmailPeriodicService mBatchEmailPeriodicService

mBatchExecIdSortDirectives

SortDirectives mBatchExecIdSortDirectives

Class atg.userprofiling.email.TemplateEmailEvent extends GenericEvent implements Serializable

serialVersionUID: -6353182577886145086L

Serialized Fields

mEmailInfo

TemplateEmailInfo mEmailInfo
TemplateEmailInfo describing the email message


mRecipient

java.lang.Object mRecipient
The recipient profile object


mMessage

javax.mail.Message mMessage
JavaMail Message constructed to send the email


mErrorMessage

java.lang.String mErrorMessage
Error message, if any, generated while sending the email

Class atg.userprofiling.email.TemplateEmailException extends ContainerException implements Serializable

Class atg.userprofiling.email.TemplateEmailInfoImpl extends TemplateEmailInfo implements Serializable

Serialized Fields

mMailingName

java.lang.String mMailingName
The Mailing name for the email


mMessageReplyTo

java.lang.String mMessageReplyTo
The ReplyTo field for the email


mMessageTo

java.lang.String mMessageTo
The To field for the email - If this is set, all email will go here instead of tho the emailAddress sent into createMessage


mMessageFrom

java.lang.String mMessageFrom
The From field for the email


mMessageCc

java.lang.String mMessageCc
The CC field for the email


mMessageBcc

java.lang.String mMessageBcc
The Bcc field for the email


mMessageSubject

java.lang.String mMessageSubject
The Subject field for the email


mTrackingData

java.util.Map<K,V> mTrackingData
The tracking data to associate with the email


mContentProcessor

MessageContentProcessor mContentProcessor
MessageContentProcessor used to set email content


mTransitoryInfo

atg.userprofiling.email.TemplateEmailTransitoryInfo mTransitoryInfo
Template email transitory data. Only used internally.


mProfileId

java.lang.String mProfileId
Sets the profile Id associated with this email

Class atg.userprofiling.email.TemplateEmailPersister.CountsInfo extends java.lang.Object implements Serializable

Serialized Fields

mNumSent

int mNumSent

mNumBounces

int mNumBounces

mNumSoftBounces

int mNumSoftBounces

mNumErrors

int mNumErrors

mNumSkipped

int mNumSkipped

Class atg.userprofiling.email.TemplateEmailTransitoryInfo extends atg.userprofiling.email.TemplateEmailPersister.CountsInfo implements Serializable

Serialized Fields

mStartTime

java.sql.Timestamp mStartTime

mEndTime

java.sql.Timestamp mEndTime

mUniqServerId

java.lang.String mUniqServerId

mNumToSend

int mNumToSend

mStatus

java.lang.String mStatus

Package atg.versionmanager

Class atg.versionmanager.VersionManager extends GenericService implements Serializable

Serialized Fields

m_assetFactory

atg.versionmanager.factories.AssetFactory m_assetFactory

m_branchFactory

atg.versionmanager.factories.BranchFactory m_branchFactory

m_developmentLineFactory

atg.versionmanager.factories.DevelopmentLineFactory m_developmentLineFactory

m_snapshotFactory

atg.versionmanager.factories.SnapshotFactory m_snapshotFactory

m_assetVersionFactory

atg.versionmanager.factories.AssetVersionFactory m_assetVersionFactory

m_workspaceFactory

atg.versionmanager.factories.WorkspaceFactory m_workspaceFactory

m_sender

atg.versionmanager.messaging.MessageSender m_sender

m_sendCheckoutEvents

boolean m_sendCheckoutEvents

m_sendCheckinEvents

boolean m_sendCheckinEvents

m_versionManagerRepository

MutableRepository m_versionManagerRepository

m_versionedRepositories

java.util.Map<K,V> m_versionedRepositories

m_wrappedVersionedRepositories

java.util.Map<K,V> m_wrappedVersionedRepositories

m_wrappedToSecuredRepositoryMapping

java.util.Map<K,V> m_wrappedToSecuredRepositoryMapping

m_versionedVirtualFileSystems

java.util.Map<K,V> m_versionedVirtualFileSystems

m_initialized

boolean m_initialized

m_uri

VersionManagerURI m_uri

mEnableProtectivePurge

boolean mEnableProtectivePurge
determines if purge should be run in verified mode. a verified purge queries data pre and post purge and makes sure data which is active was not purged as a result of a purge.


m_workspaceOptimizationThresholdAssetCount

int m_workspaceOptimizationThresholdAssetCount

m_unlockAllAssetsOptimizationThresholdCount

int m_unlockAllAssetsOptimizationThresholdCount

m_useOptimizedReplicationForMerge

boolean m_useOptimizedReplicationForMerge

m_mergeOptimizationThresholdCount

int m_mergeOptimizationThresholdCount

m_useOptimizedReplicationForRevert

boolean m_useOptimizedReplicationForRevert

m_revertOptimizationThresholdCount

int m_revertOptimizationThresholdCount

m_workspaceMergeTransactionBatchSize

int m_workspaceMergeTransactionBatchSize

m_enableWorkspaceDependencyCache

boolean m_enableWorkspaceDependencyCache

mGlobalAssetEditLockName

java.lang.String mGlobalAssetEditLockName

mGlobalAssetEditLockTimeout

long mGlobalAssetEditLockTimeout

mClientLockManager

ClientLockManager mClientLockManager

Class atg.versionmanager.VersionManagerURI extends java.lang.Object implements Serializable

Serialized Fields

m_uri

java.lang.String m_uri

m_uriType

int m_uriType

m_uriParts

java.util.List<E> m_uriParts

m_name

java.lang.String m_name

Package atg.versionmanager.event

Class atg.versionmanager.event.VersionEvent extends java.util.EventObject implements Serializable

Serialized Fields

m_versionManager

VersionManager m_versionManager

m_line

DevelopmentLine m_line

m_lineURI

VersionManagerURI m_lineURI

m_asset

AssetVersion m_asset

m_assetURI

VersionManagerURI m_assetURI

m_eventType

int m_eventType

m_oldAssetURI

VersionManagerURI m_oldAssetURI

Package atg.versionmanager.exceptions

Class atg.versionmanager.exceptions.VersionException extends java.lang.Exception implements Serializable

Class atg.versionmanager.exceptions.VersionRuntimeException extends java.lang.RuntimeException implements Serializable


Package atg.vfs

Class atg.vfs.VFSUpdateException extends java.lang.Exception implements Serializable

Serialized Fields

mSourceException

java.lang.Throwable mSourceException

mFacilityName

java.lang.String mFacilityName

mErrorCode

java.lang.String mErrorCode

Class atg.vfs.VirtualFilePropertyDescriptor extends RepositoryPropertyDescriptor implements Serializable

Serialized Fields

mFilePathPropertyName

java.lang.String mFilePathPropertyName

Class atg.vfs.VirtualFileSystemAdminServlet extends ServiceAdminServlet implements Serializable

Class atg.vfs.VirtualFileSystemDescriptor extends java.lang.Object implements Serializable

serialVersionUID: -1493223869544071820L

Serialized Fields

mName

java.lang.String mName
property: Name


mDisplayName

java.lang.String mDisplayName
property: DisplayName


mReadOnly

boolean mReadOnly
true if this file system is read-only


mAttributes

java.util.Dictionary<K,V> mAttributes
set of properties associated with this file system


mFileTypes

java.lang.String[] mFileTypes

Class atg.vfs.VirtualFileSystemException extends java.lang.Exception implements Serializable

serialVersionUID: 804929493627164276L

Serialized Fields

mSource

java.lang.Throwable mSource

Class atg.vfs.VirtualPath extends java.lang.Object implements Serializable

serialVersionUID: -2970970067348594224L

Serialized Fields

mElements

java.lang.String[] mElements

mStart

int mStart

mLength

int mLength

Package atg.websphere.wps.portlet

Class atg.websphere.wps.portlet.DispatchPortlet extends GenericPortletService implements Serializable

Serialized Fields

mPath

java.lang.String mPath

Class atg.websphere.wps.portlet.GenericPortletService extends org.apache.jetspeed.portlet.Portlet implements Serializable

Serialized Fields

mPortletConfig

org.apache.jetspeed.portlet.PortletConfig mPortletConfig

mName

java.lang.String mName

mContext

javax.naming.Context mContext

mPortletContext

org.apache.jetspeed.portlet.PortletContext mPortletContext

mLoggingInfo

boolean mLoggingInfo

mLoggingWarning

boolean mLoggingWarning

mLoggingError

boolean mLoggingError

mLoggingDebug

boolean mLoggingDebug

Package atg.workflow

Class atg.workflow.ActorAccessException extends WorkflowException implements Serializable

Serialized Fields

mOwningUser

DirectoryPrincipal mOwningUser
DirectoryPrincipal for user whose ownership of an object forbids access

Class atg.workflow.AssetDescriptor extends ElementDescriptor implements Serializable

Serialized Fields

mWorkflow

WorkflowDescriptor mWorkflow

mRequired

boolean mRequired

Class atg.workflow.ElementDescriptor extends java.lang.Object implements Serializable

Serialized Fields

mName

java.lang.String mName

mDisplayName

java.lang.String mDisplayName

mDescription

java.lang.String mDescription

mLocalizedAttributes

java.util.Map<K,V> mLocalizedAttributes

mPresentationOrdinal

int mPresentationOrdinal
an integer that can be used to sort ElementDescriptors for presentation

Class atg.workflow.FileAssetDescriptor extends atg.workflow.AssetDescriptor implements Serializable

Serialized Fields

mVFSPath

java.lang.String mVFSPath

mFileType

java.lang.String mFileType

Class atg.workflow.MissingWorkflowDescriptionException extends WorkflowException implements Serializable

Class atg.workflow.OutcomeDescriptor extends ElementDescriptor implements Serializable

Serialized Fields

mTask

TaskDescriptor mTask
owning TaskDescriptor


mOutcomeElementId

java.lang.String mOutcomeElementId
process element ID of the outcome


mFormURI

java.lang.String mFormURI
URI of form for soliciting outcome-specific info in a web UI

Class atg.workflow.RepositoryAssetDescriptor extends atg.workflow.AssetDescriptor implements Serializable

Serialized Fields

mRepositoryPath

java.lang.String mRepositoryPath

mItemType

java.lang.String mItemType

Class atg.workflow.StartWorkflowMessage extends atg.workflow.WorkflowMessage implements Serializable

Class atg.workflow.TaskDescriptor extends ElementDescriptor implements Serializable

Serialized Fields

mWorkflow

WorkflowDescriptor mWorkflow
owning WorkflowDescriptor


mTaskElementId

java.lang.String mTaskElementId
process element ID of the task


mAcl

AccessControlList mAcl
default access control list for this task


mPriority

int mPriority
default task priority


mAssignable

boolean mAssignable
flag indicating whether this task can be assigned and/or claimed


mOutcomes

java.util.List<E> mOutcomes
outcomes associated with this task


mOutcomesById

java.util.Map<K,V> mOutcomesById
outcomes associated with this task, indexed by element id


mOutcomesByName

java.util.Map<K,V> mOutcomesByName
outcomes associated with this task, indexed by name


mWaitElementIds

java.util.List<E> mWaitElementIds
wait state element ids associated with this task


mWaitState

ProcessWaitState mWaitState
Cached ProcessWaitState corresponding to this task


mSubject

atg.workflow.AssetDescriptor mSubject
optional task subject

Class atg.workflow.TaskInfo extends java.lang.Object implements Serializable

Serialized Fields

mTaskDescriptor

TaskDescriptor mTaskDescriptor
descriptor for this task


mSubjectId

java.lang.String mSubjectId
workflow subject id


mActive

boolean mActive
is this task currently active?


mRuntimeAclString

java.lang.String mRuntimeAclString
this task's runtime ACL, if any


mPriority

int mPriority
this task's priority


mOwnerName

java.lang.String mOwnerName
unique name of Persona which owns this task


mOwner

DirectoryPrincipal mOwner
cached owner


mLastActorName

java.lang.String mLastActorName
unique name of Persona which last acted on this task


mLastActor

DirectoryPrincipal mLastActor
cached last actor


mLastActionDate

java.sql.Timestamp mLastActionDate
date of last action on this task -- if null, then the task has not been acted on.


mLastOutcomeElementId

java.lang.String mLastOutcomeElementId
Outcome element ID for this task


mWorkflowManager

atg.workflow.WorkflowManagerImpl mWorkflowManager
WorkflowManagerImpl object used for resolving directory principals and access control lists.

Class atg.workflow.TaskOutcomeMessage extends atg.workflow.WorkflowMessage implements Serializable

Serialized Fields

mOutcomeElementId

java.lang.String mOutcomeElementId

Class atg.workflow.WorkflowDescriptor extends ElementDescriptor implements Serializable

Serialized Fields

mProcessName

java.lang.String mProcessName
process name of this workflow


mSegmentName

java.lang.String mSegmentName
segment name of this workflow


mFormURI

java.lang.String mFormURI
URI of form for soliciting subject-specific info in a web UI just prior to starting the workflow.


mAcl

AccessControlList mAcl
access control list controlling execute permission on this task


mTasks

java.util.List<E> mTasks
tasks associated with this workflow, in presentation order


mTasksById

java.util.Map<K,V> mTasksById
tasks associated with this workflow, indexed by both their own element Ids, their outcomes' element Ids, and the Ids of any wait elements associated with the task.


mTasksByName

java.util.Map<K,V> mTasksByName
tasks associated with this workflow, indexed by name


mAssets

java.util.List<E> mAssets
asset declared in this workflow


mAssetsByName

java.util.Map<K,V> mAssetsByName
assets indexed by name

Class atg.workflow.WorkflowException extends ContainerException implements Serializable

Class atg.workflow.WorkflowKey extends java.lang.Object implements Serializable

Serialized Fields

processName

java.lang.String processName

segmentName

java.lang.String segmentName

Class atg.workflow.WorkflowMessage extends DASMessage implements Serializable

Serialized Fields

mMessageId

java.lang.String mMessageId

mSubjectId

java.lang.String mSubjectId

mSubjectType

java.lang.String mSubjectType

mProcessName

java.lang.String mProcessName

mSegmentName

java.lang.String mSegmentName

Package atg.xml.service

Class atg.xml.service.DocumentCache extends Cache implements Serializable

Class atg.xml.service.XMLDeclaration extends java.lang.Object implements Serializable

Serialized Fields

mJavaEncoding

java.lang.String mJavaEncoding

mXMLEncoding

java.lang.String mXMLEncoding

mXMLVersion

java.lang.String mXMLVersion

mXMLDeclaration

java.lang.String mXMLDeclaration

mStandalone

boolean mStandalone

mWasDeclared

boolean mWasDeclared

Package atg.xml.tools

Class atg.xml.tools.NodeDynamicBeanInfo extends java.lang.Object implements Serializable

Serialized Fields

mBeanDescriptor

DynamicBeanDescriptor mBeanDescriptor

mPropertyNames

java.lang.String[] mPropertyNames

mProperties

DynamicPropertyDescriptor[] mProperties

mPropertyMap

java.util.HashMap<K,V> mPropertyMap