Uses of Class
org.apache.cayenne.ObjectId
-
Packages that use ObjectId Package Description org.apache.cayenne Contains persistence APIs directly accessible by users.org.apache.cayenne.access Contains classes that make up Cayenne ORM stack.org.apache.cayenne.access.event org.apache.cayenne.access.translator.select org.apache.cayenne.access.util org.apache.cayenne.map Contains O/R mapping classes that store relational database metadata information and map it to Java classes.org.apache.cayenne.query Defines standard queries supported by Cayenne and extension mechanism to create custom queries.org.apache.cayenne.util General utility classes. -
-
Uses of ObjectId in org.apache.cayenne
Fields in org.apache.cayenne declared as ObjectId Modifier and Type Field Description protected ObjectId
PersistentObject. objectId
Methods in org.apache.cayenne that return ObjectId Modifier and Type Method Description ObjectId
ObjectId. createReplacementId()
Creates and returns a replacement ObjectId.ObjectId
DataRow. createTargetObjectId(String entityName, DbRelationship relationship)
Returns an ObjectId of an object on the other side of the to-one relationship, for this DataRow representing a source of relationship.ObjectId
Persistent. getObjectId()
ObjectId
PersistentObject. getObjectId()
Methods in org.apache.cayenne with parameters of type ObjectId Modifier and Type Method Description static Object
Cayenne. objectForPK(ObjectContext context, ObjectId id)
Returns an object matching ObjectId.void
Persistent. setObjectId(ObjectId id)
void
PersistentObject. setObjectId(ObjectId objectId)
-
Uses of ObjectId in org.apache.cayenne.access
Fields in org.apache.cayenne.access declared as ObjectId Modifier and Type Field Description protected ObjectId
OptimisticLockException. failedObjectId
Fields in org.apache.cayenne.access with type parameters of type ObjectId Modifier and Type Field Description protected ConcurrentMap<ObjectId,DataRow>
DataRowStore. snapshots
Methods in org.apache.cayenne.access that return ObjectId Modifier and Type Method Description ObjectId
OptimisticLockException. getFailedObjectId()
Returns the ObjectId of the object that caused the OptimisticLockException.Methods in org.apache.cayenne.access with parameters of type ObjectId Modifier and Type Method Description void
DataRowStore. forgetSnapshot(ObjectId id)
Evicts a snapshot from cache without generating any SnapshotEvents.DataRow
DataRowStore. getCachedSnapshot(ObjectId oid)
Returns cached snapshot or null if no snapshot is currently cached for the given ObjectId.DataRow
ObjectStore. getCachedSnapshot(ObjectId oid)
Returns a snapshot for ObjectId from the underlying snapshot cache.DataRow
ObjectStore. getSnapshot(ObjectId oid)
Returns a snapshot for ObjectId from the underlying snapshot cache.void
OperationObserver. nextGeneratedRows(Query query, ResultIterator<?> keys, ObjectId idToUpdate)
Callback method invoked after each batch of generated values is read during an update.Method parameters in org.apache.cayenne.access with type arguments of type ObjectId Modifier and Type Method Description void
DataRowStore. processSnapshotChanges(Object postedBy, Map<ObjectId,DataRow> updatedSnapshots, Collection<ObjectId> deletedSnapshotIds, Collection<ObjectId> invalidatedSnapshotIds, Collection<ObjectId> indirectlyModifiedIds)
Processes changes made to snapshots.void
DataRowStore. processSnapshotChanges(Object postedBy, Map<ObjectId,DataRow> updatedSnapshots, Collection<ObjectId> deletedSnapshotIds, Collection<ObjectId> invalidatedSnapshotIds, Collection<ObjectId> indirectlyModifiedIds)
Processes changes made to snapshots.Constructors in org.apache.cayenne.access with parameters of type ObjectId Constructor Description OptimisticLockException(ObjectId id, DbEntity rootEntity, String querySQL, Map qualifierSnapshot)
-
Uses of ObjectId in org.apache.cayenne.access.event
Fields in org.apache.cayenne.access.event with type parameters of type ObjectId Modifier and Type Field Description protected Collection<ObjectId>
SnapshotEvent. deletedIds
protected Collection<ObjectId>
SnapshotEvent. indirectlyModifiedIds
protected Collection<ObjectId>
SnapshotEvent. invalidatedIds
protected Map<ObjectId,DataRow>
SnapshotEvent. modifiedDiffs
Methods in org.apache.cayenne.access.event that return types with arguments of type ObjectId Modifier and Type Method Description Collection<ObjectId>
SnapshotEvent. getDeletedIds()
Collection<ObjectId>
SnapshotEvent. getIndirectlyModifiedIds()
Collection<ObjectId>
SnapshotEvent. getInvalidatedIds()
Map<ObjectId,DataRow>
SnapshotEvent. getModifiedDiffs()
Constructor parameters in org.apache.cayenne.access.event with type arguments of type ObjectId Constructor Description SnapshotEvent(Object source, Object postedBy, Map<ObjectId,DataRow> modifiedDiffs, Collection<ObjectId> deletedIds, Collection<ObjectId> invalidatedIds, Collection<ObjectId> indirectlyModifiedIds)
SnapshotEvent(Object source, Object postedBy, Map<ObjectId,DataRow> modifiedDiffs, Collection<ObjectId> deletedIds, Collection<ObjectId> invalidatedIds, Collection<ObjectId> indirectlyModifiedIds)
-
Uses of ObjectId in org.apache.cayenne.access.translator.select
Methods in org.apache.cayenne.access.translator.select with parameters of type ObjectId Modifier and Type Method Description void
DataObjectMatchTranslator. setObjectId(ObjectId id)
-
Uses of ObjectId in org.apache.cayenne.access.util
Methods in org.apache.cayenne.access.util with parameters of type ObjectId Modifier and Type Method Description void
DefaultOperationObserver. nextGeneratedRows(Query query, ResultIterator keys, ObjectId idToUpdate)
Closes ResultIterator without reading its data.void
DoNothingOperationObserver. nextGeneratedRows(Query query, ResultIterator<?> keys, ObjectId idToUpdate)
-
Uses of ObjectId in org.apache.cayenne.map
Methods in org.apache.cayenne.map with parameters of type ObjectId Modifier and Type Method Description boolean
DbEntity. isFullReplacementIdAttached(ObjectId id)
Returns true if there is full replacement id is attached to an ObjectId. -
Uses of ObjectId in org.apache.cayenne.query
Fields in org.apache.cayenne.query declared as ObjectId Modifier and Type Field Description protected ObjectId
BatchQueryRow. objectId
protected ObjectId
ObjectIdQuery. objectId
protected ObjectId
RelationshipQuery. objectId
Methods in org.apache.cayenne.query that return ObjectId Modifier and Type Method Description ObjectId
BatchQueryRow. getObjectId()
ObjectId
ObjectIdQuery. getObjectId()
ObjectId
RelationshipQuery. getObjectId()
Methods in org.apache.cayenne.query with parameters of type ObjectId Modifier and Type Method Description void
InsertBatchQuery. add(Map<String,Object> snapshot, ObjectId id)
Adds a snapshot to batch.void
UpdateBatchQuery. add(Map<String,Object> qualifierSnapshot, Map<String,Object> updateSnapshot, ObjectId id)
Adds a parameter row to the batch.static SelectById<DataRow>
SelectById. dataRowQuery(ObjectId id)
static <T> SelectById<T>
SelectById. query(Class<T> entityType, ObjectId id)
Constructors in org.apache.cayenne.query with parameters of type ObjectId Constructor Description BatchQueryRow(ObjectId objectId, Map<String,Object> qualifier)
ObjectIdQuery(ObjectId objectID)
Creates a refreshing ObjectIdQuery.ObjectIdQuery(ObjectId objectId, boolean fetchingDataRows, int cachePolicy)
Creates a new ObjectIdQuery.RelationshipQuery(ObjectId objectID, String relationshipName)
Creates a RelationshipQuery.RelationshipQuery(ObjectId objectID, String relationshipName, boolean refreshing)
Creates a RelationshipQuery. -
Uses of ObjectId in org.apache.cayenne.util
Fields in org.apache.cayenne.util with type parameters of type ObjectId Modifier and Type Field Description protected Map<ObjectId,Persistent>
ObjectDetachOperation. seen
Methods in org.apache.cayenne.util with parameters of type ObjectId Modifier and Type Method Description protected Object
ObjectContextQueryAction. polymorphicObjectFromCache(ObjectId superOid)
-