Serialized Form
Package org.apache.cayenne |
validatingObjectsOnCommit
boolean validatingObjectsOnCommit
graphAction
ObjectContextGraphAction graphAction
- Graph action that handles property changes
- Since:
- 3.1
userProperties
java.util.Map<K,V> userProperties
- Stores user defined properties associated with this DataContext.
- Since:
- 3.0
graphManager
org.apache.cayenne.CayenneContextGraphManager graphManager
mergeHandler
org.apache.cayenne.CayenneContextMergeHandler mergeHandler
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
snapshotVersion
long snapshotVersion
values
java.util.Map<K,V> values
version
long version
replacesVersion
long replacesVersion
entityName
java.lang.String entityName
- Since:
- 3.0
object
Persistent object
relationship
java.lang.String relationship
entityName
java.lang.String entityName
objectIdKeys
java.util.Map<K,V> objectIdKeys
singleKey
java.lang.String singleKey
singleValue
java.lang.Object singleValue
key
byte[] key
replacementIdMap
java.util.Map<K,V> replacementIdMap
objectId
ObjectId objectId
persistenceState
int persistenceState
Package org.apache.cayenne.access |
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
delegate
DataContextDelegate delegate
usingSharedSnaphsotCache
boolean usingSharedSnaphsotCache
objectStore
ObjectStore objectStore
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
name
java.lang.String name
maxSize
int maxSize
snapshots
java.util.concurrent.ConcurrentMap<K,V> snapshots
notifyingRemoteListeners
boolean notifyingRemoteListeners
Class org.apache.cayenne.access.IncrementalFaultList$1 extends java.lang.Object implements Serializable |
objectMap
java.util.Map<K,V> objectMap
changes
java.util.Map<K,V> changes
currentDiffId
int currentDiffId
dataRowCacheSet
boolean dataRowCacheSet
lifecycleEventInducedChanges
java.util.Collection<E> lifecycleEventInducedChanges
context
DataContext context
- The DataContext that owns this ObjectStore.
failedObjectId
ObjectId failedObjectId
querySQL
java.lang.String querySQL
rootEntity
DbEntity rootEntity
qualifierSnapshot
java.util.Map<K,V> qualifierSnapshot
mapKeyAccessor
Accessor mapKeyAccessor
Package org.apache.cayenne.access.event |
timestamp
long timestamp
deletedIds
java.util.Collection<E> deletedIds
invalidatedIds
java.util.Collection<E> invalidatedIds
modifiedDiffs
java.util.Map<K,V> modifiedDiffs
indirectlyModifiedIds
java.util.Collection<E> indirectlyModifiedIds
Package org.apache.cayenne.access.jdbc |
tableName
java.lang.String tableName
procedureName
java.lang.String procedureName
name
java.lang.String name
namePrefix
java.lang.String namePrefix
dataRowKey
java.lang.String dataRowKey
jdbcType
int jdbcType
javaClass
java.lang.String javaClass
Package org.apache.cayenne.cache |
map
java.util.Map<K,V> map
Package org.apache.cayenne.configuration |
name
java.lang.String name
properties
java.util.Map<K,V> properties
dataMaps
java.util.Collection<E> dataMaps
nodeDescriptors
java.util.Collection<E> nodeDescriptors
configurationSource
Resource configurationSource
defaultNodeName
java.lang.String defaultNodeName
name
java.lang.String name
dataMapNames
java.util.Collection<E> dataMapNames
parameters
java.lang.String parameters
adapterType
java.lang.String adapterType
dataSourceFactoryType
java.lang.String dataSourceFactoryType
schemaUpdateStrategyType
java.lang.String schemaUpdateStrategyType
dataSourceDescriptor
DataSourceInfo dataSourceDescriptor
configurationSource
Resource configurationSource
dataChannelDescriptor
DataChannelDescriptor dataChannelDescriptor
- Since:
- 3.1
Package org.apache.cayenne.configuration.rop.server |
servletContext
javax.servlet.ServletContext servletContext
Package org.apache.cayenne.configuration.server |
configurationTree
ConfigurationTree<T extends ConfigurationNode> configurationTree
Package org.apache.cayenne.conn |
userName
java.lang.String userName
password
java.lang.String password
jdbcDriver
java.lang.String jdbcDriver
dataSourceUrl
java.lang.String dataSourceUrl
adapterClassName
java.lang.String adapterClassName
minConnections
int minConnections
maxConnections
int maxConnections
passwordEncoderClass
java.lang.String passwordEncoderClass
passwordEncoderKey
java.lang.String passwordEncoderKey
passwordLocation
java.lang.String passwordLocation
passwordSourceExecutable
java.lang.String passwordSourceExecutable
passwordSourceFilename
java.lang.String passwordSourceFilename
passwordSourceModel
java.lang.String passwordSourceModel
passwordSourceUrl
java.lang.String passwordSourceUrl
Package org.apache.cayenne.ejbql |
Package org.apache.cayenne.ejbql.parser |
serialVersionUID: 1L
currentToken
Token currentToken
- This is the last token that has been consumed successfully. If
this object has been created due to a parse error, the token
followng this token will (therefore) be the first error token.
expectedTokenSequences
int[][] expectedTokenSequences
- Each entry in this array is an array of integers. Each array
of integers represents a sequence of tokens (by their ordinal
values) that is expected at this point of the parse.
tokenImage
java.lang.String[] tokenImage
- This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred. This array is
defined in the generated ...Constants interface.
eol
java.lang.String eol
- The end of line string for this machine.
id
int id
parent
SimpleNode parent
children
SimpleNode[] children
not
boolean not
text
java.lang.String text
serialVersionUID: 1L
kind
int kind
- An integer that describes the kind of this token. This numbering
system is determined by JavaCCParser, and a table of these numbers is
stored in the file ...Constants.java.
beginLine
int beginLine
- The line number of the first character of this Token.
beginColumn
int beginColumn
- The column number of the first character of this Token.
endLine
int endLine
- The line number of the last character of this Token.
endColumn
int endColumn
- The column number of the last character of this Token.
image
java.lang.String image
- The string image of the token.
next
Token next
- A reference to the next regular (non-special) token from the input
stream. If this is the last token from the input stream, or if the
token manager has not read tokens beyond this one, this field is
set to null. This is true only if this token is also a regular
token. Otherwise, see below for a description of the contents of
this field.
specialToken
Token specialToken
- This field is used to access special tokens that occur prior to this
token, but after the immediately preceding regular (non-special) token.
If there are no such special tokens, this field is set to null.
When there are more than one such special token, this field refers
to the last of these special tokens, which in turn refers to the next
previous special token through its specialToken field, and so on
until the first special token (whose specialToken field is null).
The next fields of special tokens refer to other special tokens that
immediately follow it (without an intervening regular token). If there
is no such token, this field is null.
serialVersionUID: 1L
errorCode
int errorCode
- Indicates the reason why the exception is thrown. It will have
one of the above 4 values.
Package org.apache.cayenne.event |
info
java.util.Map<K,V> info
subject
EventSubject subject
_fullyQualifiedSubjectName
java.lang.String _fullyQualifiedSubjectName
Package org.apache.cayenne.exp |
type
int type
expressionString
java.lang.String expressionString
name
java.lang.String name
Package org.apache.cayenne.exp.parser |
values
java.lang.Object[] values
path
java.lang.String path
pathAliases
java.util.Map<K,V> pathAliases
value
java.lang.Object value
specialConstructor
boolean specialConstructor
- This variable determines which constructor was used to create
this object and thereby affects the semantics of the
"getMessage" method (see below).
currentToken
Token currentToken
- This is the last token that has been consumed successfully. If
this object has been created due to a parse error, the token
followng this token will (therefore) be the first error token.
expectedTokenSequences
int[][] expectedTokenSequences
- Each entry in this array is an array of integers. Each array
of integers represents a sequence of tokens (by their ordinal
values) that is expected at this point of the parse.
tokenImage
java.lang.String[] tokenImage
- This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred. This array is
defined in the generated ...Constants interface.
eol
java.lang.String eol
- The end of line string for this machine.
pattern
java.util.regex.Pattern pattern
patternCompiled
boolean patternCompiled
ignoringCase
boolean ignoringCase
escapeChar
char escapeChar
parent
Node parent
children
Node[] children
id
int id
errorCode
int errorCode
- Indicates the reason why the exception is thrown. It will have
one of the above 4 values.
Package org.apache.cayenne.graph |
targetNodeId
java.lang.Object targetNodeId
arcId
java.lang.Object arcId
targetNodeId
java.lang.Object targetNodeId
arcId
java.lang.Object arcId
diffs
java.util.List<E> diffs
diff
GraphDiff diff
diffId
int diffId
nodeId
java.lang.Object nodeId
newNodeId
java.lang.Object newNodeId
property
java.lang.String property
oldValue
java.lang.Object oldValue
newValue
java.lang.Object newValue
Package org.apache.cayenne.map |
name
java.lang.String name
entity
Entity entity
callbackType
LifecycleEvent callbackType
callbackMethods
java.util.Set<E> callbackMethods
callbacks
CallbackDescriptor[] callbacks
name
java.lang.String name
location
java.lang.String location
namespace
MappingNamespace namespace
quotingSQLIdentifiers
java.lang.Boolean quotingSQLIdentifiers
defaultSchema
java.lang.String defaultSchema
defaultPackage
java.lang.String defaultPackage
defaultSuperclass
java.lang.String defaultSuperclass
defaultLockType
int defaultLockType
clientSupported
boolean clientSupported
defaultClientPackage
java.lang.String defaultClientPackage
defaultClientSuperclass
java.lang.String defaultClientSuperclass
embeddablesMap
java.util.SortedMap<K,V> embeddablesMap
objEntityMap
java.util.SortedMap<K,V> objEntityMap
dbEntityMap
java.util.SortedMap<K,V> dbEntityMap
procedureMap
java.util.SortedMap<K,V> procedureMap
queryMap
java.util.SortedMap<K,V> queryMap
results
java.util.SortedMap<K,V> results
defaultEntityListeners
java.util.List<E> defaultEntityListeners
configurationSource
Resource configurationSource
- Since:
- 3.1
dataChannelDescriptor
DataChannelDescriptor dataChannelDescriptor
- Since:
- 3.1
type
int type
- Defines JDBC type of the column.
mandatory
boolean mandatory
- Defines whether the attribute allows nulls.
primaryKey
boolean primaryKey
- Defines whether the attribute is a part of the table primary key.
generated
boolean generated
- Defines whether this column value is generated by the database. Other terms for
such columns are "auto-increment" or "identity".
- Since:
- 1.2
maxLength
int maxLength
scale
int scale
- Since:
- 3.0
attributePrecision
int attributePrecision
- Since:
- 3.0
catalog
java.lang.String catalog
schema
java.lang.String schema
primaryKey
java.util.Collection<E> primaryKey
generatedAttributes
java.util.Collection<E> generatedAttributes
- Since:
- 1.2
primaryKeyGenerator
DbKeyGenerator primaryKeyGenerator
qualifier
Expression qualifier
- Qualifier, that will be applied to all select queries and joins with this DbEntity
relationship
DbRelationship relationship
sourceName
java.lang.String sourceName
targetName
java.lang.String targetName
name
java.lang.String name
dbEntity
DbEntity dbEntity
generatorType
java.lang.String generatorType
keyCacheSize
java.lang.Integer keyCacheSize
generatorName
java.lang.String generatorName
joins
java.util.List<E> joins
toDependentPK
boolean toDependentPK
fkName
java.lang.String fkName
primaryKeyName
java.lang.String primaryKeyName
className
java.lang.String className
attributes
java.util.SortedMap<K,V> attributes
dataMap
DataMap dataMap
name
java.lang.String name
type
java.lang.String type
dbAttributeName
java.lang.String dbAttributeName
embeddable
Embeddable embeddable
attributeOverrides
java.util.SortedMap<K,V> attributeOverrides
name
java.lang.String name
dataMap
DataMap dataMap
attributes
java.util.SortedMap<K,V> attributes
relationships
java.util.SortedMap<K,V> relationships
className
java.lang.String className
callbacks
CallbackMap callbacks
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Java default deserialization seems not to invoke constructor by default - invoking
it manually
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
indexedByClass
boolean indexedByClass
maps
java.util.Collection<E> maps
clientEntityResolver
EntityResolver clientEntityResolver
entityListenerFactory
EntityListenerFactory entityListenerFactory
type
java.lang.String type
usedForLocking
boolean usedForLocking
dbAttributePath
java.lang.String dbAttributePath
superClassName
java.lang.String superClassName
className
java.lang.String className
dbEntityName
java.lang.String dbEntityName
superEntityName
java.lang.String superEntityName
qualifier
Expression qualifier
readOnly
boolean readOnly
lockType
int lockType
_abstract
boolean _abstract
serverOnly
boolean serverOnly
clientClassName
java.lang.String clientClassName
clientSuperClassName
java.lang.String clientSuperClassName
entityListeners
java.util.List<E> entityListeners
callbacks
CallbackMap callbacks
excludingDefaultListeners
boolean excludingDefaultListeners
excludingSuperclassListeners
boolean excludingSuperclassListeners
attributeOverrides
java.util.Map<K,V> attributeOverrides
readOnly
boolean readOnly
deleteRule
int deleteRule
usedForLocking
boolean usedForLocking
dbRelationships
java.util.List<E> dbRelationships
deferredPath
java.lang.String deferredPath
- Db-relationships path that is set but not yet parsed (turned into
List) Used during map loading
collectionType
java.lang.String collectionType
- Stores the type of collection mapped by a to-many relationship. Null for to-one
relationships.
- Since:
- 3.0
mapKey
java.lang.String mapKey
- Stores a property name of a target entity used to create a relationship map. Only
has effect if collectionType property is set to "java.util.Map".
- Since:
- 3.0
name
java.lang.String name
dataMap
DataMap dataMap
catalog
java.lang.String catalog
schema
java.lang.String schema
returningValue
boolean returningValue
callParameters
java.util.List<E> callParameters
name
java.lang.String name
procedure
Procedure procedure
direction
int direction
maxLength
int maxLength
precision
int precision
type
int type
name
java.lang.String name
sourceEntity
Entity sourceEntity
targetEntityName
java.lang.String targetEntityName
toMany
boolean toMany
runtime
boolean runtime
- A flag that specifies whether a Relationship was mapped by the user or added
dynamically by Cayenne runtime.
- Since:
- 3.0
Package org.apache.cayenne.map.event |
attribute
Attribute attribute
embeddableAttribute
EmbeddableAttribute embeddableAttribute
embeddable
Embeddable embeddable
entity
Entity entity
id
int id
oldName
java.lang.String oldName
oldNameSet
boolean oldNameSet
domain
DataChannelDescriptor domain
- Domain of event object. Might be null
relationship
Relationship relationship
Package org.apache.cayenne.query |
root
java.lang.Object root
- The root object this query. May be an entity name, Java class, ObjEntity or
DbEntity, depending on the specific query and how it was constructed.
name
java.lang.String name
dataMap
DataMap dataMap
batchIndex
int batchIndex
- Since:
- 1.2
dbEntity
DbEntity dbEntity
- Since:
- 1.2
name
java.lang.String name
dataMap
DataMap dataMap
- Since:
- 3.1
qualifierSnapshots
java.util.List<E> qualifierSnapshots
dbAttributes
java.util.List<E> dbAttributes
usingOptimisticLocking
boolean usingOptimisticLocking
qualifierAttributes
java.util.Collection<E> qualifierAttributes
nullQualifierNames
java.util.Collection<E> nullQualifierNames
name
java.lang.String name
dataMap
DataMap dataMap
ejbqlStatement
java.lang.String ejbqlStatement
namedParameters
java.util.Map<K,V> namedParameters
positionalParameters
java.util.Map<K,V> positionalParameters
metadata
org.apache.cayenne.query.EJBQLQueryMetadata metadata
name
java.lang.String name
dataMap
DataMap dataMap
- Since:
- 3.1
objectIds
java.util.List<E> objectIds
- Since:
- 1.2
objectSnapshots
java.util.List<E> objectSnapshots
dbAttributes
java.util.List<E> dbAttributes
parameters
java.util.Map<K,V> parameters
forceNoCache
boolean forceNoCache
overrideMetadata
org.apache.cayenne.query.BaseQueryMetadata overrideMetadata
objectId
ObjectId objectId
cachePolicy
int cachePolicy
fetchingDataRows
boolean fetchingDataRows
sortSpecString
java.lang.String sortSpecString
sortOrder
SortOrder sortOrder
pathExceptionSuppressed
boolean pathExceptionSuppressed
nullSortedFirst
boolean nullSortedFirst
parentQuery
SelectQuery parentQuery
- Deprecated. since 3.1 unused
prefetchPath
java.lang.String prefetchPath
- The relationship path from root objects to the objects being prefetched.
lastPrefetchHint
ObjRelationship lastPrefetchHint
- Stores the last ObjRelationship in the prefetch path.
resultPaths
java.util.Collection<E> resultPaths
readResolve
private java.lang.Object readResolve()
throws java.io.ObjectStreamException
- Throws:
java.io.ObjectStreamException
name
java.lang.String name
phantom
boolean phantom
semantics
int semantics
ejbqlPathEntityId
java.lang.String ejbqlPathEntityId
entityName
java.lang.String entityName
children
java.util.Collection<E> children
resultEntityName
java.lang.String resultEntityName
- Since:
- 1.2
resultClass
java.lang.Class<T> resultClass
- Since:
- 1.2
columnNamesCapitalization
CapsStrategy columnNamesCapitalization
parameters
java.util.Map<K,V> parameters
metaData
org.apache.cayenne.query.ProcedureQueryMetadata metaData
resultDescriptors
java.util.List<E> resultDescriptors
- Since:
- 1.2
qualifier
Expression qualifier
chain
java.util.Collection<E> chain
name
java.lang.String name
dataMap
DataMap dataMap
- Since:
- 3.1
objects
java.util.Collection<E> objects
query
Query query
groupKeys
java.lang.String[] groupKeys
objectId
ObjectId objectId
relationshipName
java.lang.String relationshipName
refreshing
boolean refreshing
statementFetchSize
int statementFetchSize
orderings
java.util.List<E> orderings
distinct
boolean distinct
metaData
org.apache.cayenne.query.SelectQueryMetadata metaData
defaultTemplate
java.lang.String defaultTemplate
templates
java.util.Map<K,V> templates
parameters
java.util.Map<K,V>[] parameters
columnNamesCapitalization
CapsStrategy columnNamesCapitalization
result
SQLResult result
metaData
org.apache.cayenne.query.SQLTemplateMetadata metaData
objectIds
java.util.List<E> objectIds
- Since:
- 1.2
qualifierSnapshots
java.util.List<E> qualifierSnapshots
updateSnapshots
java.util.List<E> updateSnapshots
usingOptimisticLocking
boolean usingOptimisticLocking
updatedAttributes
java.util.List<E> updatedAttributes
qualifierAttributes
java.util.List<E> qualifierAttributes
nullQualifierNames
java.util.Collection<E> nullQualifierNames
dbAttributes
java.util.List<E> dbAttributes
Package org.apache.cayenne.reflect |
propertyName
java.lang.String propertyName
readMethod
java.lang.reflect.Method readMethod
writeMethod
java.lang.reflect.Method writeMethod
nullValue
java.lang.Object nullValue
propertyPath
java.lang.String propertyPath
embeddedAccessor
Accessor embeddedAccessor
embeddableAccessor
Accessor embeddableAccessor
embeddableDescriptor
EmbeddableDescriptor embeddableDescriptor
propertyName
java.lang.String propertyName
field
java.lang.reflect.Field field
nullValue
java.lang.Object nullValue
property
Property property
property
Property property
accessor
Accessor accessor
source
java.lang.Object source
Package org.apache.cayenne.remote |
query
Query query
name
java.lang.String name
sessionId
java.lang.String sessionId
eventBridgeFactory
java.lang.String eventBridgeFactory
eventBridgeParameters
java.util.Map<K,V> eventBridgeParameters
type
int type
senderChanges
GraphDiff senderChanges
Package org.apache.cayenne.remote.hessian.service |
logger
org.apache.commons.logging.Log logger
- Deprecated.
Package org.apache.cayenne.remote.service |
session
RemoteSession session
channel
DataChannel channel
Package org.apache.cayenne.resource |
url
java.net.URL url
Package org.apache.cayenne.util |
results
java.util.List<E> results
fullSize
int fullSize
list
java.util.List<E> list
- A list used for the actual objects storage.
indexProperty
java.lang.String indexProperty
dirty
boolean dirty
comparator
java.util.Comparator<T> comparator
objectList
java.util.List<E> objectList
context
ObjectContext context
fault
boolean fault
value
java.lang.Object value
objectList
java.util.List<E> objectList
addedToUnresolved
java.util.LinkedList<E> addedToUnresolved
removedFromUnresolved
java.util.LinkedList<E> removedFromUnresolved
objectMap
java.util.Map<K,V> objectMap
mapKeyAccessor
Accessor mapKeyAccessor
objectSet
java.util.Set<E> objectSet
addedToUnresolved
java.util.Set<E> addedToUnresolved
removedFromUnresolved
java.util.Set<E> removedFromUnresolved
Package org.apache.cayenne.util.concurrentlinkedhashmap |
serialVersionUID: 1L
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.InvalidObjectException
- Throws:
java.io.InvalidObjectException
writeReplace
java.lang.Object writeReplace()
data
java.util.concurrent.ConcurrentMap<K,V> data
concurrencyLevel
int concurrencyLevel
evictionDeque
org.apache.cayenne.util.concurrentlinkedhashmap.LinkedDeque<E extends org.apache.cayenne.util.concurrentlinkedhashmap.Linked<E>> evictionDeque
weightedSize
int weightedSize
capacity
int capacity
nextOrder
int nextOrder
drainedOrder
int drainedOrder
evictionLock
java.util.concurrent.locks.Lock evictionLock
buffers
java.util.Queue<E>[] buffers
executor
java.util.concurrent.ExecutorService executor
weigher
org.apache.cayenne.util.concurrentlinkedhashmap.Weigher<V> weigher
bufferLengths
java.util.concurrent.atomic.AtomicIntegerArray bufferLengths
drainStatus
java.util.concurrent.atomic.AtomicReference<V> drainStatus
pendingNotifications
java.util.Queue<E> pendingNotifications
listener
org.apache.cayenne.util.concurrentlinkedhashmap.EvictionListener<K,V> listener
Class org.apache.cayenne.util.concurrentlinkedhashmap.LinkedDeque$1 extends java.lang.Object implements Serializable |
Class org.apache.cayenne.util.concurrentlinkedhashmap.LinkedDeque$2 extends java.lang.Object implements Serializable |
Package org.apache.cayenne.validation |
property
java.lang.String property
source
java.lang.Object source
error
java.lang.Object error
result
ValidationResult result
failures
java.util.List<E> failures
Copyright © 2001-2012 Apache Cayenne. All Rights Reserved.