Serialized Form
Package org.apache.cayenne |
queryCache
QueryCache queryCache
graphAction
ObjectContextGraphAction graphAction
- Graph action that handles property changes
- Since:
- 3.1
userProperties
Map<K,V> userProperties
- Stores user defined properties associated with this DataContext.
- Since:
- 3.0
entityResolver
EntityResolver entityResolver
graphManager
org.apache.cayenne.CayenneContextGraphManager graphManager
mergeHandler
org.apache.cayenne.CayenneContextMergeHandler mergeHandler
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
snapshotVersion
long snapshotVersion
values
Map<K,V> values
version
long version
replacesVersion
long replacesVersion
entityName
String entityName
- Since:
- 3.0
object
Persistent object
relationship
String relationship
entityName
String entityName
objectIdKeys
Map<K,V> objectIdKeys
singleKey
String singleKey
singleValue
Object singleValue
key
byte[] key
replacementIdMap
Map<K,V> replacementIdMap
objectId
ObjectId objectId
persistenceState
int persistenceState
Package org.apache.cayenne.access |
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
delegate
DataContextDelegate delegate
usingSharedSnaphsotCache
boolean usingSharedSnaphsotCache
validatingObjectsOnCommit
boolean validatingObjectsOnCommit
objectStore
ObjectStore objectStore
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
name
String name
snapshots
LRUMap snapshots
notifyingRemoteListeners
boolean notifyingRemoteListeners
objectMap
Map<K,V> objectMap
changes
Map<K,V> changes
currentDiffId
int currentDiffId
dataRowCacheSet
boolean dataRowCacheSet
lifecycleEventInducedChanges
Collection<E> lifecycleEventInducedChanges
context
DataContext context
- The DataContext that owns this ObjectStore.
querySQL
String querySQL
rootEntity
DbEntity rootEntity
qualifierSnapshot
Map<K,V> qualifierSnapshot
mapKeyAccessor
Accessor mapKeyAccessor
Package org.apache.cayenne.access.event |
timestamp
long timestamp
deletedIds
Collection<E> deletedIds
invalidatedIds
Collection<E> invalidatedIds
modifiedDiffs
Map<K,V> modifiedDiffs
indirectlyModifiedIds
Collection<E> indirectlyModifiedIds
Package org.apache.cayenne.access.jdbc |
tableName
String tableName
procedureName
String procedureName
name
String name
namePrefix
String namePrefix
dataRowKey
String dataRowKey
jdbcType
int jdbcType
javaClass
String javaClass
Package org.apache.cayenne.cache |
map
Map<K,V> map
Package org.apache.cayenne.configuration |
name
String name
properties
Map<K,V> properties
dataMaps
Collection<E> dataMaps
nodeDescriptors
Collection<E> nodeDescriptors
configurationSource
Resource configurationSource
name
String name
dataMapNames
Collection<E> dataMapNames
parameters
String parameters
adapterType
String adapterType
dataSourceFactoryType
String dataSourceFactoryType
schemaUpdateStrategyType
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
String userName
password
String password
jdbcDriver
String jdbcDriver
dataSourceUrl
String dataSourceUrl
adapterClassName
String adapterClassName
minConnections
int minConnections
maxConnections
int maxConnections
passwordEncoderClass
String passwordEncoderClass
passwordEncoderKey
String passwordEncoderKey
passwordLocation
String passwordLocation
passwordSourceExecutable
String passwordSourceExecutable
passwordSourceFilename
String passwordSourceFilename
passwordSourceModel
String passwordSourceModel
passwordSourceUrl
String passwordSourceUrl
Package org.apache.cayenne.ejbql |
Package org.apache.cayenne.ejbql.parser |
path
String path
value
Object value
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
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
String eol
- The end of line string for this machine.
id
int id
parent
SimpleNode parent
children
SimpleNode[] children
not
boolean not
text
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
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
Map<K,V> info
subject
EventSubject subject
_fullyQualifiedSubjectName
String _fullyQualifiedSubjectName
Package org.apache.cayenne.exp |
type
int type
expressionString
String expressionString
name
String name
Package org.apache.cayenne.exp.parser |
values
Object[] values
path
String path
pathAliases
Map<K,V> pathAliases
value
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
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
String eol
- The end of line string for this machine.
pattern
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
Object targetNodeId
arcId
Object arcId
targetNodeId
Object targetNodeId
arcId
Object arcId
diffs
List<E> diffs
diff
GraphDiff diff
diffId
int diffId
nodeId
Object nodeId
newNodeId
Object newNodeId
property
String property
oldValue
Object oldValue
newValue
Object newValue
Package org.apache.cayenne.map |
name
String name
entity
Entity entity
callbackType
LifecycleEvent callbackType
callbackMethods
Set<E> callbackMethods
callbacks
CallbackDescriptor[] callbacks
name
String name
location
String location
namespace
MappingNamespace namespace
quotingSQLIdentifiers
Boolean quotingSQLIdentifiers
defaultSchema
String defaultSchema
defaultPackage
String defaultPackage
defaultSuperclass
String defaultSuperclass
defaultLockType
int defaultLockType
clientSupported
boolean clientSupported
defaultClientPackage
String defaultClientPackage
defaultClientSuperclass
String defaultClientSuperclass
embeddablesMap
SortedMap<K,V> embeddablesMap
objEntityMap
SortedMap<K,V> objEntityMap
dbEntityMap
SortedMap<K,V> dbEntityMap
procedureMap
SortedMap<K,V> procedureMap
queryMap
SortedMap<K,V> queryMap
results
SortedMap<K,V> results
defaultEntityListeners
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
String catalog
schema
String schema
primaryKey
Collection<E> primaryKey
generatedAttributes
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
String sourceName
targetName
String targetName
name
String name
dbEntity
DbEntity dbEntity
generatorType
String generatorType
keyCacheSize
Integer keyCacheSize
generatorName
String generatorName
joins
List<E> joins
toDependentPK
boolean toDependentPK
fkName
String fkName
primaryKeyName
String primaryKeyName
className
String className
attributes
SortedMap<K,V> attributes
dataMap
DataMap dataMap
name
String name
type
String type
dbAttributeName
String dbAttributeName
embeddable
Embeddable embeddable
attributeOverrides
SortedMap<K,V> attributeOverrides
name
String name
dataMap
DataMap dataMap
attributes
SortedMap<K,V> attributes
relationships
SortedMap<K,V> relationships
className
String className
callbacks
CallbackMap callbacks
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Java default deserialization seems not to invoke constructor by default - invoking
it manually
- Throws:
IOException
ClassNotFoundException
indexedByClass
boolean indexedByClass
maps
Collection<E> maps
clientEntityResolver
EntityResolver clientEntityResolver
entityListenerFactory
EntityListenerFactory entityListenerFactory
type
String type
usedForLocking
boolean usedForLocking
dbAttributePath
String dbAttributePath
superClassName
String superClassName
className
String className
dbEntityName
String dbEntityName
superEntityName
String superEntityName
qualifier
Expression qualifier
readOnly
boolean readOnly
lockType
int lockType
_abstract
boolean _abstract
serverOnly
boolean serverOnly
clientClassName
String clientClassName
clientSuperClassName
String clientSuperClassName
entityListeners
List<E> entityListeners
callbacks
CallbackMap callbacks
excludingDefaultListeners
boolean excludingDefaultListeners
excludingSuperclassListeners
boolean excludingSuperclassListeners
attributeOverrides
Map<K,V> attributeOverrides
readOnly
boolean readOnly
deleteRule
int deleteRule
usedForLocking
boolean usedForLocking
dbRelationships
List<E> dbRelationships
deferredPath
String deferredPath
- Db-relationships path that is set but not yet parsed (turned into
List) Used during map loading
collectionType
String collectionType
- Stores the type of collection mapped by a to-many relationship. Null for to-one
relationships.
- Since:
- 3.0
mapKey
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
String name
dataMap
DataMap dataMap
catalog
String catalog
schema
String schema
returningValue
boolean returningValue
callParameters
List<E> callParameters
name
String name
procedure
Procedure procedure
direction
int direction
maxLength
int maxLength
precision
int precision
type
int type
name
String name
sourceEntity
Entity sourceEntity
targetEntityName
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
String oldName
oldNameSet
boolean oldNameSet
domain
DataChannelDescriptor domain
- Domain of event object. Might be null
relationship
Relationship relationship
Package org.apache.cayenne.query |
root
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
String name
dataMap
DataMap dataMap
batchIndex
int batchIndex
- Since:
- 1.2
dbEntity
DbEntity dbEntity
- Since:
- 1.2
name
String name
dataMap
DataMap dataMap
- Since:
- 3.1
qualifierSnapshots
List<E> qualifierSnapshots
dbAttributes
List<E> dbAttributes
usingOptimisticLocking
boolean usingOptimisticLocking
qualifierAttributes
Collection<E> qualifierAttributes
nullQualifierNames
Collection<E> nullQualifierNames
name
String name
dataMap
DataMap dataMap
ejbqlStatement
String ejbqlStatement
namedParameters
Map<K,V> namedParameters
positionalParameters
Map<K,V> positionalParameters
metadata
org.apache.cayenne.query.EJBQLQueryMetadata metadata
name
String name
dataMap
DataMap dataMap
- Since:
- 3.1
objectIds
List<E> objectIds
- Since:
- 1.2
objectSnapshots
List<E> objectSnapshots
dbAttributes
List<E> dbAttributes
parameters
Map<K,V> parameters
forceNoCache
boolean forceNoCache
overrideMetadata
org.apache.cayenne.query.BaseQueryMetadata overrideMetadata
objectId
ObjectId objectId
cachePolicy
int cachePolicy
fetchingDataRows
boolean fetchingDataRows
sortSpecString
String sortSpecString
sortOrder
SortOrder sortOrder
pathExceptionSuppressed
boolean pathExceptionSuppressed
nullSortedFirst
boolean nullSortedFirst
parentQuery
SelectQuery parentQuery
prefetchPath
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
Collection<E> resultPaths
readResolve
private Object readResolve()
throws ObjectStreamException
- Throws:
ObjectStreamException
name
String name
phantom
boolean phantom
semantics
int semantics
ejbqlPathEntityId
String ejbqlPathEntityId
entityName
String entityName
children
Collection<E> children
resultEntityName
String resultEntityName
- Since:
- 1.2
resultClass
Class<T> resultClass
- Since:
- 1.2
columnNamesCapitalization
CapsStrategy columnNamesCapitalization
parameters
Map<K,V> parameters
metaData
org.apache.cayenne.query.ProcedureQueryMetadata metaData
resultDescriptors
List<E> resultDescriptors
- Since:
- 1.2
qualifier
Expression qualifier
chain
Collection<E> chain
name
String name
dataMap
DataMap dataMap
- Since:
- 3.1
objects
Collection<E> objects
query
Query query
groupKeys
String[] groupKeys
objectId
ObjectId objectId
relationshipName
String relationshipName
refreshing
boolean refreshing
statementFetchSize
int statementFetchSize
orderings
List<E> orderings
distinct
boolean distinct
metaData
org.apache.cayenne.query.SelectQueryMetadata metaData
defaultTemplate
String defaultTemplate
templates
Map<K,V> templates
parameters
Map<K,V>[] parameters
columnNamesCapitalization
CapsStrategy columnNamesCapitalization
result
SQLResult result
metaData
org.apache.cayenne.query.SQLTemplateMetadata metaData
objectIds
List<E> objectIds
- Since:
- 1.2
qualifierSnapshots
List<E> qualifierSnapshots
updateSnapshots
List<E> updateSnapshots
usingOptimisticLocking
boolean usingOptimisticLocking
updatedAttributes
List<E> updatedAttributes
qualifierAttributes
List<E> qualifierAttributes
nullQualifierNames
Collection<E> nullQualifierNames
dbAttributes
List<E> dbAttributes
Package org.apache.cayenne.reflect |
propertyName
String propertyName
readMethod
Method readMethod
writeMethod
Method writeMethod
nullValue
Object nullValue
propertyPath
String propertyPath
embeddedAccessor
Accessor embeddedAccessor
embeddableAccessor
Accessor embeddableAccessor
embeddableDescriptor
EmbeddableDescriptor embeddableDescriptor
propertyName
String propertyName
field
Field field
nullValue
Object nullValue
property
Property property
property
Property property
accessor
Accessor accessor
source
Object source
Package org.apache.cayenne.remote |
query
Query query
name
String name
sessionId
String sessionId
eventBridgeFactory
String eventBridgeFactory
eventBridgeParameters
Map<K,V> eventBridgeParameters
type
int type
senderChanges
GraphDiff senderChanges
Package org.apache.cayenne.remote.hessian.service |
logger
Log logger
- Deprecated.
Package org.apache.cayenne.remote.service |
session
RemoteSession session
channel
DataChannel channel
Package org.apache.cayenne.resource |
url
URL url
Package org.apache.cayenne.util |
results
List<E> results
fullSize
int fullSize
list
List<E> list
- A list used for the actual objects storage.
indexProperty
String indexProperty
dirty
boolean dirty
comparator
Comparator<T> comparator
objectList
List<E> objectList
context
ObjectContext context
fault
boolean fault
value
Object value
objectList
List<E> objectList
addedToUnresolved
LinkedList<E> addedToUnresolved
removedFromUnresolved
LinkedList<E> removedFromUnresolved
objectMap
Map<K,V> objectMap
mapKeyAccessor
Accessor mapKeyAccessor
objectSet
Set<E> objectSet
addedToUnresolved
Set<E> addedToUnresolved
removedFromUnresolved
Set<E> removedFromUnresolved
Package org.apache.cayenne.validation |
property
String property
source
Object source
error
Object error
result
ValidationResult result
failures
List<E> failures
Copyright © 2001-2010 Apache Cayenne. All Rights Reserved.