Uses of Class
org.openxava.util.SystemException

Packages that use SystemException
org.openxava.model   
 

Uses of SystemException in org.openxava.model
 

Methods in org.openxava.model that throw SystemException
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 void MapFacade.commit()
          Commit in database the changes done using MapFacade.
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 java.lang.Object MapFacade.findEntity(java.lang.String modelName, java.util.Map keyValues)
          Obtain the entity/aggregate from a map with key values.
static java.util.Map MapFacade.getKeyValues(java.lang.String modelName, java.lang.Object entity)
          Obtains the values of the key of entity/aggregate.
static java.util.Map MapFacade.getValues(java.lang.String modelName, java.util.Map keyValues, java.util.Map memberNames)
          Obtain the specified values from entity/aggregate from a map with primary key values.
static java.util.Map MapFacade.getValues(java.lang.String modelName, java.lang.Object entity, java.util.Map memberNames)
          Obtain the values of the entity/aggregate from the own entity.
static java.util.Map MapFacade.getValuesByAnyProperty(java.lang.String modelName, java.util.Map searchingValues, java.util.Map memberNames)
          Obtain the specified values from entity/aggregate searching it by any property.
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.
static Messages MapFacade.validate(java.lang.String modelName, java.util.Map values)
          Validates the sent values but does not create or update the object.