org.apache.openjpa.kernel

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Database ORM » openjpa » org.apache.openjpa.kernel 
org.apache.openjpa.kernel

OpenJPA Runtime Kernel

This package provides a common OpenJPA runtime environment that can be adapted for use with various data store mechanisms.

Java Source File NameTypeComment
AbstractBrokerFactory.javaClass Abstract implementation of the BrokerFactory that must be subclassed for a specific runtime.
AbstractBrokerSerializationTest.javaClass
AbstractFieldManager.javaClass Abstract FieldManager for easy subclassing.
AbstractHintHandler.javaClass Default hint handler abstract base class.
AbstractLockManager.javaClass Abstract LockManager implementation.
AbstractPCData.javaClass Abstract base class which implements core PCData behavior.
AbstractPCResultObjectProvider.javaClass Abstract implementation of PCResultObjectProvider that implements ResultObjectProvider.getResultObject by assembling the necessary information about the object to be loaded.
AbstractStoreQuery.javaClass Abstract StoreQuery that implements most methods as no-ops.
AbstractUnenhancedRelationBrokerSerializationTest.javaClass
AttachManager.javaClass Handles attaching instances.
AttachStrategy.javaClass Strategy for attaching objects.
AutoClear.javaInterface State clearing constants.
AutoDetach.javaInterface Bit flags for when to automatically detach the entire persistence context.
Bootstrap.javaClass
Broker.javaInterface The broker is the primary interface into the OpenJPA runtime.
BrokerFactory.javaInterface Factory for Broker instances.
BrokerImpl.javaClass Concrete Broker .
ClearFieldManager.javaClass FieldManager that responds to all fetch methods with the default value for that field; used to clear the state of managed instances.
ConnectionRetainModes.javaInterface Connection retain mode constants.
DataCacheRetrieveMode.javaenum DataCache Retrieve Modes.
DataCacheStoreMode.javaenum
DelegatingBroker.javaClass Delegating broker that can also perform exception translation for use in facades.
DelegatingBrokerFactory.javaClass Delegating broker factory that can also perform exception translation for use in facades.
DelegatingExtent.javaClass Delegating extent that also can perform exception translation for use in facades.
DelegatingFetchConfiguration.javaClass Delegating fetch configuration that can also perform exception translation for use in facades.
DelegatingQuery.javaClass Delegating query that can also perform exception translation for use in facades.
DelegatingResultList.javaClass Delegating result list that can also perform exception translation for use in facades.
DelegatingSeq.javaClass Delegating sequence that can also perform exception translation for use in facades.
DelegatingStoreManager.javaClass Base class for store manager decorators that delegate to another store manager for some operations.
DetachedStateAttachStrategy.javaClass Handles attaching instances with detached state.
DetachedStateManager.javaClass Internal state manager for detached instances.
DetachedValueStateManager.javaClass Implementation of OpenJPAStateManager designed to retrieve values from a detached instance, including when managed by a DetachedStateManager .
DetachManager.javaClass Handles detaching instances.
DetachState.javaInterface Constants for which fields to include in the detach graph.
ECleanState.javaClass Lifecycle state.
ECopyState.javaClass Lifecycle state.
EDeletedState.javaClass Lifecycle state.
EDirtyState.javaClass Lifecycle state.
ENonTransState.javaClass Lifecycle state. Represents an embedded instance that is not transactional, but that allows access to persistent data.
ExpressionStoreQuery.javaClass Implementation of an expression-based query, which can handle String-based query expressions such as JPQL and JDOQL. This implementation is suitable for in-memory operation. Override the following methods to also support datastore operation:
Extent.javaInterface Representation of all members of a persistent class.
ExtentImpl.javaClass Representation of all members of a persistent class.
FetchConfiguration.javaInterface Allows configuration and optimization of how objects are loaded from the data store.
FetchConfigurationHintHandler.javaClass Fetch configuration hint handler.
FetchConfigurationImpl.javaClass Allows configuration and optimization of how objects are loaded from the data store.
FillStrategy.javaInterface A strategy to fill data into a ResultShape .
Available strategy implementations can fill by invoking constructor, setting array elements, direct assignment, invoking put(key,value)-style method on Map or factory-constructed instance.
Filters.javaClass Helper methods for dealing with query filters.
FinalizingBrokerImpl.javaClass Subtype of BrokerImpl that automatically closes itself during finalization.
FindCallbacks.javaInterface Allows facades to control the particulars of the find operation through callbacks.
FinderCache.javaInterface A cache to create and maintain FinderQuery finder queries .
FinderQuery.javaInterface A finder query is a query for an instance of a class by its primary key.
HollowState.javaClass Lifecycle state. Represents a hollow instance that exists in the data store, but whose state has not been loaded and who is not active in the current transaction (if any).
InMemorySavepointManager.javaClass A SavepointManager implementation which stores all data in memory.
InverseManager.javaClass Class which manages inverse relations before flushing to the datastore.
LocalManagedRuntime.javaClass Uses a local implementation of the TransactionManager interface.
LockLevels.javaInterface Standard object lock levels.
LockManager.javaInterface Handles obtaining and releasing locks on objects.
ManagedCache.javaClass Cache of managed objects.
MethodStoreQuery.javaClass A query that is executed by a user-defined method.
MixedLockLevels.javaInterface Defines lock levels used for MixedLockManager.
NoneLockManager.javaClass A lock manager that does not perform any locking.
ObjectFactory.javaInterface An interface to create objects that are used by result processing.
ObjectIdStateManager.javaClass State manager used to access state of embedded object id primary key fields.
OpCallbacks.javaInterface Allows facades to control the particulars of persistence operations through callbacks.
OpenJPASavepoint.javaClass
OpenJPAStateManager.javaInterface Interface implemented by OpenJPA state managers.
OrderingMergedResultObjectProvider.javaClass Merged result object provider specialization that extracts ordering values from results for comparison.
PCData.javaInterface Holds data about a single persistence capable instance.
PCDataImpl.javaClass Default PCData implementation.
PCleanState.javaClass Lifecycle state.
PCResultObjectProvider.javaInterface Variant of ResultObjectProvider that populates a OpenJPAStateManager object in an application-defined manner.
PCState.javaClass Base class for all lifecycle states.
PDeletedFlushedState.javaClass Lifecycle state.
PDeletedState.javaClass Lifecycle state.
PDirtyState.javaClass Lifecycle state.
PNewDeletedState.javaClass Lifecycle state.
PNewFlushedDeletedFlushedState.javaClass Lifecycle state.
PNewFlushedDeletedState.javaClass Lifecycle state.
PNewProvisionalState.javaClass Lifecycle state.
PNewState.javaClass Lifecycle state.
PNonTransDeletedState.javaClass Lifecycle state.
PNonTransDirtyState.javaClass Lifecycle state. Represents a persistent instance that has been dirtied outside of transaction.
PNonTransNewState.javaClass Lifecycle state.
PNonTransState.javaClass Lifecycle state. Represents a persistent instance that is not transactional, but that allows access to persistent data.
PreparedQuery.javaInterface A prepared query associates a compiled query to a parsed state that can be executed possibly with more efficiency.
PreparedQueryCache.javaInterface A cache to create and maintain PreparedQuery prepared queries .
Query.javaInterface OpenJPA query interface.
QueryContext.javaInterface A query execution context.
QueryFlushModes.javaInterface Constants for determining when to flush before queries.
QueryHints.javaInterface Standard query hint keys.
QueryImpl.javaClass Implementation of the Query interface.
QueryLanguages.javaClass Constants and utilities for query languages.
QueryOperations.javaInterface Query operation constants.
QueryStatistics.javaInterface Records query execution statistics.
RestoreState.javaInterface State restore constants.
ResultPacker.javaClass Helper class to pack results into the result class set on the query.
ResultShape.javaClass Describes the shape of a query result.
A shape is described as a Java class by the generic type argument T.
ResultShapePacker.javaClass Packs result by delegation to a ResultShape.
ROPStoreManager.javaClass Wraps the native store manager to handle calls using custom PCResultObjectProvider s.
SaveFieldManager.javaClass FieldManager type used to store information for rollback.
SavepointFieldManager.javaClass FieldManager type used to store information for savepoint rollback.
SavepointManager.javaInterface A manager for handling savepoints.
Seq.javaInterface Internal OpenJPA sequence interface.
SingleFieldManager.javaClass FieldManager type used to hold onto a single field value and then dispense it via the fetch methods.
StateManagerImpl.javaClass Implementation of the OpenJPAStateManager interface for use with this runtime.
StoreContext.javaInterface Represents a set of managed objects and their environment.
StoreManager.javaInterface Interface to be implemented by data store mechanisms to interact with this runtime.
StoreQuery.javaInterface Component that executes queries against the datastore.
TCleanState.javaClass Lifecycle state.
TDirtyState.javaClass Lifecycle state.
TestBrokerFactoryEventManager.javaClass
TestBrokerFactoryListenerRegistry.javaClass
TestDynamicClassRegistration.javaClass
TestEnhancedInstanceBrokerSerialization.javaClass
TestEntityManagerFactoryPool.javaClass
TestInstanceGraphBrokerSerialization.javaClass
TestQueryCompilationCache.javaClass
TestUnenhancedFieldAccessInstanceBrokerSerialization.javaClass
TestUnenhancedFieldAccessWithRelationInstanceBrokerSerialization.javaClass
TestUnenhancedPropertyAccessInstanceBrokerSerialization.javaClass
TestUnenhancedPropertyAccessWithRelationInstanceBrokerSerialization.javaClass
TimeSeededSeq.javaClass A simplistic implementation of a Seq used to provide datastore ids.
TLoadedState.javaClass Lifecycle state. Represents a temporarily managed transient instance whose fields are loaded for the purpose of field inspection such as for cascades.
TransferFieldManager.javaClass FieldManager type used to transfer a single field value.
TransientState.javaClass Lifecycle state.
UUIDHexSeq.javaClass Sequence for generating 32-character hex UUID strings.
UUIDStringSeq.javaClass Sequence for generating 16-character UUID strings.
UUIDType4HexSeq.javaClass Sequence for generating 32-character hex Type 4 UUID strings.
UUIDType4StringSeq.javaClass Sequence for generating 16-character UUID strings.
VersionAttachStrategy.javaClass Handles attaching instances using version and primary key fields.
VersionLockManager.javaClassLockManager implementation that provides support for version checking and version updating when locks are acquired.
w___w___w__.j_a_v__a_2___s__.__c__o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.