Uses of Class
org.openxava.validators.ValidationException

Packages that use ValidationException
org.openxava.actions   
org.openxava.ejbx   
org.openxava.model   
org.openxava.model.impl   
org.openxava.util   
org.openxava.validators   
 

Uses of ValidationException in org.openxava.actions
 

Methods in org.openxava.actions that throw ValidationException
protected  void SaveElementInCollectionAction.associateEntity(java.util.Map keyValues)
           
 

Uses of ValidationException in org.openxava.ejbx
 

Methods in org.openxava.ejbx that throw ValidationException
static java.lang.Object EJBFactory.create(EJBHome home, java.util.Map map)
          Create a EJB from a home and the create argument.
static java.lang.Object EJBFactory.create(EJBHome home, java.lang.Object details)
          Create a EJB form home and the create arguments.
static java.lang.Object EJBFactory.create(java.lang.Object home, java.lang.Class homeClass, java.util.Map map)
          Create a EJB from a home, its class and a java.util.Map as create argument.
 void EJBReplicableBase.executeSets(java.util.Map propertiesToUpdate)
           
 

Uses of ValidationException in org.openxava.model
 

Methods in org.openxava.model that throw ValidationException
static void MapFacade.addCollectionElement(java.lang.String modelName, java.util.Map keyValues, java.lang.String collectionName, java.util.Map collectionElementKeyValues)
          Add an element to a collection.
static java.lang.Object MapFacade.create(java.lang.String modelName, java.util.Map values)
          Creates a new entity from a map with its initial values.
static java.lang.Object MapFacade.createAggregate(java.lang.String modelName, java.util.Map containerKey, int counter, java.util.Map values)
          Creates a new aggregate from a map with its initial values.
static java.lang.Object MapFacade.createAggregate(java.lang.String modelName, java.lang.Object container, int counter, java.util.Map values)
          Creates a new aggregate from a map with its initial values.
static java.util.Map MapFacade.createAggregateReturningKey(java.lang.String modelName, java.util.Map containerKey, int counter, java.util.Map values)
          Creates a new aggregate from a map with its initial values and return a map with the key.
static java.util.Map MapFacade.createNotValidatingCollections(java.lang.String modelName, java.util.Map values)
          Creates a new entity from a map with its initial values and return a map with the key values of the created entity.
static java.util.Map MapFacade.createReturningKey(java.lang.String modelName, java.util.Map values)
          Creates a new entity from a map with its initial values and return a map with the key values of the created entity.
static java.util.Map MapFacade.createReturningValues(java.lang.String modelName, java.util.Map values)
          Creates a new entity from a map with its initials values and return a map with the values of created entity.
static void MapFacade.remove(java.lang.String modelName, java.util.Map keyValues)
          Remove the entity/aggregate from a map with its key.
static void MapFacade.removeCollectionElement(java.lang.String modelName, java.util.Map keyValues, java.lang.String collectionName, java.util.Map collectionElementKeyValues)
          Removes an elemente from a collection.
static void MapFacade.setValues(java.lang.String modelName, java.util.Map keyValues, java.util.Map values)
          Set new values to a entity/aggregate that is found from its key values.
 

Uses of ValidationException in org.openxava.model.impl
 

Methods in org.openxava.model.impl that throw ValidationException
 void IMapFacadeImpl.addCollectionElement(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues, java.lang.String collectionName, java.util.Map collectionElementKeyValue)
           
 void MapFacadeBean.addCollectionElement(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues, java.lang.String collectionName, java.util.Map collectionElementKeyValues)
           
 java.lang.Object IPersistenceProvider.create(MetaModel metaModel, java.util.Map values)
          Create a persistent object (saved in database) from the data passed in map format.
 java.lang.Object POJOPersistenceProviderBase.create(MetaModel metaModel, java.util.Map values)
           
 java.lang.Object IMapFacadeImpl.create(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.lang.Object MapFacadeBean.create(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.lang.Object IPersistenceProvider.createAggregate(MetaModel metaModel, java.util.Map values, MetaModel metaModelContainer, java.lang.Object containerModel, int number)
          Create an aggregate (saving it in database) from the data passed in map format.
 java.lang.Object POJOPersistenceProviderBase.createAggregate(MetaModel metaModel, java.util.Map values, MetaModel metaModelContainer, java.lang.Object containerModel, int number)
           
 java.lang.Object IMapFacadeImpl.createAggregate(UserInfo userInfo, java.lang.String modelName, java.util.Map keyContainer, int counter, java.util.Map values)
           
 java.lang.Object MapFacadeBean.createAggregate(UserInfo userInfo, java.lang.String modelName, java.util.Map containerKeyValues, int counter, java.util.Map values)
           
 java.lang.Object IMapFacadeImpl.createAggregate(UserInfo userInfo, java.lang.String modelName, java.lang.Object container, int counter, java.util.Map values)
           
 java.lang.Object MapFacadeBean.createAggregate(UserInfo userInfo, java.lang.String modelName, java.lang.Object container, int counter, java.util.Map values)
           
 java.util.Map IMapFacadeImpl.createAggregateReturningKey(UserInfo userInfo, java.lang.String modelName, java.util.Map containerKeyValues, int counter, java.util.Map values)
           
 java.util.Map MapFacadeBean.createAggregateReturningKey(UserInfo userInfo, java.lang.String modelName, java.util.Map containerKeyValues, int counter, java.util.Map values)
           
 java.util.Map IMapFacadeImpl.createNotValidatingCollections(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.util.Map MapFacadeBean.createNotValidatingCollections(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.util.Map IMapFacadeImpl.createReturningKey(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.util.Map MapFacadeBean.createReturningKey(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.util.Map IMapFacadeImpl.createReturningValues(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 java.util.Map MapFacadeBean.createReturningValues(UserInfo userInfo, java.lang.String modelName, java.util.Map values)
           
 void IMapFacadeImpl.delete(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues)
           
 void MapFacadeBean.delete(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues)
           
 void POJOPropertiesContainerAdapter.executeSets(java.util.Map properties)
           
 void IMapFacadeImpl.removeCollectionElement(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues, java.lang.String collectionName, java.util.Map collectionElementKeyValue)
           
 void MapFacadeBean.removeCollectionElement(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues, java.lang.String collectionName, java.util.Map collectionElementKeyValues)
           
 void IMapFacadeImpl.setValues(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues, java.util.Map values)
           
 void MapFacadeBean.setValues(UserInfo userInfo, java.lang.String modelName, java.util.Map keyValues, java.util.Map values)
           
 

Uses of ValidationException in org.openxava.util
 

Methods in org.openxava.util that throw ValidationException
 void IPropertiesContainer.executeSets(java.util.Map properties)
          Update the properties from a map.
 

Uses of ValidationException in org.openxava.validators
 

Constructors in org.openxava.validators with parameters of type ValidationException
ValidationException(ValidationException ex)