|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CayenneRuntimeException | |
---|---|
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.configuration | |
org.apache.cayenne.configuration.server | |
org.apache.cayenne.ejbql | |
org.apache.cayenne.exp | Cayenne data expression classes. |
org.apache.cayenne.map | Contains O/R mapping classes that store relational database metadata information and map it to Java classes. |
org.apache.cayenne.reflect | |
org.apache.cayenne.remote | Contains classes an interfaces related to Cayenne remote object persistence features. |
org.apache.cayenne.remote.hessian | |
org.apache.cayenne.remote.service | |
org.apache.cayenne.util | General utility classes. |
org.apache.cayenne.validation | |
org.apache.cayenne.xml |
Uses of CayenneRuntimeException in org.apache.cayenne |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne | |
---|---|
class |
ConfigurationException
A runtime exception thrown on failures in Cayenne configuration. |
class |
DeleteDenyException
An exception thrown during an attempt to delete an object that has a relationship to a non-null related object, that has a DENY delete rule. |
class |
FaultFailureException
A runtime exception thrown when during lazy object initialization Cayenne finds that no matching row exists in the database for a given ObjectId. |
Methods in org.apache.cayenne that throw CayenneRuntimeException | |
---|---|
java.lang.Object |
ValueHolder.getValue()
Returns an object stored by this ValueHolder. |
java.lang.Object |
ValueHolder.getValueDirectly()
Retrieves ValueHolder value without triggering fault resolution. |
java.lang.Object |
ValueHolder.setValue(java.lang.Object value)
Sets an object stored by this ValueHolder. |
java.lang.Object |
ValueHolder.setValueDirectly(java.lang.Object value)
Sets ValueHolder vaue without triggering fault resolution. |
Uses of CayenneRuntimeException in org.apache.cayenne.access |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.access | |
---|---|
class |
DomainStoppedException
An exception thrown on attempts to access a DataDomain after it was explicitly shut down by the user. |
class |
OptimisticLockException
An exception thrown on optimistic lock failure. |
Methods in org.apache.cayenne.access that throw CayenneRuntimeException | |
---|---|
void |
DataContext.commitChanges()
Synchronizes object graph with the database. |
Uses of CayenneRuntimeException in org.apache.cayenne.configuration |
---|
Methods in org.apache.cayenne.configuration that throw CayenneRuntimeException | |
---|---|
DataMap |
DataMapLoader.load(Resource configurationResource)
|
DataMap |
XMLDataMapLoader.load(Resource configurationResource)
|
Uses of CayenneRuntimeException in org.apache.cayenne.configuration.server |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.configuration.server | |
---|---|
class |
DataDomainLoadException
|
Uses of CayenneRuntimeException in org.apache.cayenne.ejbql |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.ejbql | |
---|---|
class |
EJBQLException
An exception thrown on errors during parsing EJBQL statements. |
Uses of CayenneRuntimeException in org.apache.cayenne.exp |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.exp | |
---|---|
class |
ExpressionException
RuntimeException thrown on errors during expressions creation/parsing. |
Uses of CayenneRuntimeException in org.apache.cayenne.map |
---|
Methods in org.apache.cayenne.map that throw CayenneRuntimeException | |
---|---|
DataMap |
MapLoader.loadDataMap(org.xml.sax.InputSource src)
Loads a DataMap from XML input source. |
DataMap |
MapLoader.loadDataMap(java.lang.String uri)
Deprecated. since 3.1 MapLoader.loadDataMap(InputSource) should be used. |
Uses of CayenneRuntimeException in org.apache.cayenne.reflect |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.reflect | |
---|---|
class |
PropertyException
An unchecked exception thrown on errors during property access, either within a Accessor or a Property. |
class |
UnresolvablePathException
A runtime exception thrown when PropertyUtils.getProperty() finds that
there is a null value in middle of the resolved path. |
Methods in org.apache.cayenne.reflect that throw CayenneRuntimeException | |
---|---|
static java.lang.Object |
PropertyUtils.getProperty(java.lang.Object object,
java.lang.String nestedPropertyName)
Returns object property using JavaBean-compatible introspection with one addition - a property can be a dot-separated property name path. |
static void |
PropertyUtils.setProperty(java.lang.Object object,
java.lang.String nestedPropertyName,
java.lang.Object value)
Sets object property using JavaBean-compatible introspection with one addition - a property can be a dot-separated property name path. |
Uses of CayenneRuntimeException in org.apache.cayenne.remote |
---|
Methods in org.apache.cayenne.remote that throw CayenneRuntimeException | |
---|---|
protected abstract void |
BaseConnection.beforeSendMessage(ClientMessage message)
Called before logging the beginning of message processing. |
EventBridge |
RemoteSession.createServerEventBridge()
Creates an EventBridge that will listen for server events. |
protected abstract java.lang.Object |
BaseConnection.doSendMessage(ClientMessage message)
The worker method invoked to process message. |
EventBridge |
ClientConnection.getServerEventBridge()
Returns an EventBridge that receives remote server events. |
java.lang.Object |
BaseConnection.sendMessage(ClientMessage message)
Invokes 'beforeSendMessage' on self, then invokes 'doSendMessage'. |
java.lang.Object |
ClientConnection.sendMessage(ClientMessage message)
Sends a synchronous ClientMessage to the server, returning a reply. |
protected boolean |
ClientChannel.setupRemoteChannelListener()
Starts up an EventBridge to listen for remote updates. |
Constructors in org.apache.cayenne.remote that throw CayenneRuntimeException | |
---|---|
ClientChannel(ClientConnection connection,
boolean channelEventsEnabled,
EventManager eventManager)
Deprecated. since 3.1 use ClientChannel.ClientChannel(ClientConnection, boolean, EventManager, boolean) |
|
ClientChannel(ClientConnection connection,
boolean channelEventsEnabled,
EventManager eventManager,
boolean remoteEventsOptional)
|
Uses of CayenneRuntimeException in org.apache.cayenne.remote.hessian |
---|
Methods in org.apache.cayenne.remote.hessian that throw CayenneRuntimeException | |
---|---|
protected void |
HessianConnection.beforeSendMessage(ClientMessage message)
Establishes server session if needed. |
protected void |
HessianConnection.connect()
Establishes a session with remote service. |
protected java.lang.Object |
HessianConnection.doSendMessage(ClientMessage message)
Sends a message to remote Cayenne Hessian service. |
EventBridge |
HessianConnection.getServerEventBridge()
|
Uses of CayenneRuntimeException in org.apache.cayenne.remote.service |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.remote.service | |
---|---|
class |
MissingSessionException
An exception that are thrown by the ROP server if the client are missing a session. |
Methods in org.apache.cayenne.remote.service that throw CayenneRuntimeException | |
---|---|
protected java.lang.Object |
LocalConnection.doSendMessage(ClientMessage message)
Dispatches a message to an internal handler. |
Uses of CayenneRuntimeException in org.apache.cayenne.util |
---|
Methods in org.apache.cayenne.util that throw CayenneRuntimeException | |
---|---|
java.lang.Object |
IndexPropertyList.getValue()
|
java.lang.Object |
PersistentObjectHolder.getValue()
Returns a value resolving it via a query on the first call to this method. |
java.lang.Object |
PersistentObjectList.getValue()
|
java.lang.Object |
PersistentObjectMap.getValue()
|
java.lang.Object |
PersistentObjectSet.getValue()
|
java.lang.Object |
IndexPropertyList.getValueDirectly()
|
java.lang.Object |
PersistentObjectHolder.getValueDirectly()
|
java.lang.Object |
PersistentObjectList.getValueDirectly()
|
java.lang.Object |
PersistentObjectMap.getValueDirectly()
|
java.lang.Object |
PersistentObjectSet.getValueDirectly()
|
java.lang.Object |
IndexPropertyList.setValue(java.lang.Object value)
|
java.lang.Object |
PersistentObjectHolder.setValue(java.lang.Object value)
Sets an object value, marking this ValueHolder as resolved. |
java.lang.Object |
PersistentObjectList.setValue(java.lang.Object value)
|
java.lang.Object |
PersistentObjectMap.setValue(java.lang.Object value)
|
java.lang.Object |
PersistentObjectSet.setValue(java.lang.Object value)
|
java.lang.Object |
IndexPropertyList.setValueDirectly(java.lang.Object value)
|
java.lang.Object |
PersistentObjectHolder.setValueDirectly(java.lang.Object value)
|
java.lang.Object |
PersistentObjectList.setValueDirectly(java.lang.Object value)
|
java.lang.Object |
PersistentObjectMap.setValueDirectly(java.lang.Object value)
|
java.lang.Object |
PersistentObjectSet.setValueDirectly(java.lang.Object value)
|
Uses of CayenneRuntimeException in org.apache.cayenne.validation |
---|
Subclasses of CayenneRuntimeException in org.apache.cayenne.validation | |
---|---|
class |
ValidationException
An exception thrown on unsuccessful validation. |
Uses of CayenneRuntimeException in org.apache.cayenne.xml |
---|
Methods in org.apache.cayenne.xml that throw CayenneRuntimeException | |
---|---|
java.lang.Object |
XMLDecoder.decode(java.io.Reader xml)
Deprecated. Decodes XML wrapped by a Reader into an object. |
java.lang.Object |
XMLDecoder.decode(java.io.Reader xml,
java.lang.String mappingUrl)
Deprecated. Decodes XML wrapped by a Reader into an object, using the supplied mapping file to guide the decoding process. |
protected java.util.Collection<java.lang.Object> |
XMLDecoder.decodeCollection(org.w3c.dom.Element xml)
Deprecated. Decodes a Collection represented by XML wrapped by a Reader into a List of objects. |
protected java.lang.Object |
XMLDecoder.decodeElement(org.w3c.dom.Element element)
Deprecated. Decodes the XML element to an object. |
static java.util.List<java.lang.Object> |
XMLDecoder.decodeList(java.io.Reader xml)
Deprecated. Decodes a list of DataObjects. |
static java.util.List<java.lang.Object> |
XMLDecoder.decodeList(java.io.Reader xml,
ObjectContext objectContext)
Deprecated. Decodes a list of DataObjects, registering them the supplied context. |
static java.util.List<java.lang.Object> |
XMLDecoder.decodeList(java.io.Reader xml,
java.lang.String mappingUrl)
Deprecated. Decodes a list of DataObjects using the supplied mapping file to guide the decoding process. |
static java.util.List<java.lang.Object> |
XMLDecoder.decodeList(java.io.Reader xml,
java.lang.String mappingUrl,
ObjectContext objectContext)
Deprecated. Decodes a list of DataObjects using the supplied mapping file to guide the decoding process, registering them the supplied context. |
java.lang.String |
XMLEncoder.encode(java.lang.Object object)
Deprecated. Encodes an object using "root" as a root tag. |
java.lang.String |
XMLEncoder.encode(java.lang.String rootTag,
java.lang.Object object)
Deprecated. Encodes using provided root XML tag. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |