|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EpPersistenceException | |
---|---|
com.elasticpath.persistence | |
com.elasticpath.persistence.impl | |
com.elasticpath.persistence.support.impl |
Uses of EpPersistenceException in com.elasticpath.persistence |
---|
Methods in com.elasticpath.persistence that throw EpPersistenceException | |
---|---|
Transaction |
PersistenceSession.beginTransaction()
Begins a transaction. |
int |
PersistenceEngine.bulkUpdate(java.lang.String query)
Update/delete all objects according to the given query. |
int |
PersistenceEngine.bulkUpdate(java.lang.String query,
java.lang.Object[] parameters)
Update/delete all objects according to the given query. |
void |
CsvFileReader.close()
Close the csv file. |
void |
PersistenceSession.close()
Close the session. |
void |
PrintWriter.close()
Close the file. |
void |
Transaction.commit()
Commit changes. |
Query |
PersistenceSession.createQuery(java.lang.String queryString)
Creates and returns a query based on the given query string. |
Query |
PersistenceSession.createSQLQuery(java.lang.String queryString)
Creates and returns a sql query based on the given query string. |
void |
PersistenceEngine.delete(Persistence object)
Delete the given persistent instance. |
java.util.List |
PersistenceEngine.find(java.lang.Class objClass,
java.util.List propertyCriteria)
Retrieve a list of persistent instances of the specified class with the specified property criteria. |
java.util.List |
PersistenceEngine.find(java.lang.Class objClass,
PropertyCriterion propertyCriterion)
Retrieve a list of persistent instances of the specified class with the specified property criterion. |
java.util.List |
PersistenceEngine.find(java.lang.Class objClass,
RelationCriterion relationCriterion)
Retrieve a list of persistent instances of the specified class with the specified relation criterion. |
Persistence |
PersistenceEngine.get(java.lang.Class persistenceClass,
long uidPk)
Get a persistent instance with the given id. |
java.util.List |
CsvFileReader.getTopLines(int lines)
Read the top lines with the give number. |
java.util.List |
Query.list()
Return the query results as a List. |
Persistence |
PersistenceEngine.load(java.lang.Class persistenceClass,
long uidPk)
Load a persistent instance with the given id. |
void |
ElasticPathDao.loadElasticPath(ElasticPath elasticPath)
Load the elastic path configuration. |
void |
ElasticPathDao.loadGuidedNavigationConfig(ElasticPath elasticPath)
Load the guided navigation config. |
void |
PersistenceEngine.merge(Persistence object)
Merge the given persistent instance. |
void |
CsvFileReader.open(java.lang.String csvFileName)
Open a csv file. |
void |
PrintWriter.open(java.lang.String fileName)
Open a file to write. |
void |
CsvFileReader.open(java.lang.String csvFileName,
char colDelimeter,
char textQualifier)
Open a csv file with the given column delimeter and text qualifier. |
void |
PrintWriter.println(java.lang.String string)
Writes the given string as a line. |
java.lang.String[] |
CsvFileReader.readNext()
Read the next line. |
java.util.List |
PersistenceEngine.retrieve(java.util.List queries)
Retrieve a list of persistent instances with the given list of queries. |
java.util.List |
PersistenceEngine.retrieve(java.util.List queries,
java.lang.Object[] parameters)
Retrieve a list of persistent instances with the given list of queries. |
java.util.List |
PersistenceEngine.retrieve(java.lang.String query)
Retrieve a list of persistent instances with the specified query. |
java.util.List |
PersistenceEngine.retrieve(java.lang.String query,
int firstResult,
int maxRestuls)
Retrieve a list of persistent instances with the specified query and bounds, namely, the maximum number of rows to retrieve and / or the first row to retrieve. |
java.util.List |
PersistenceEngine.retrieve(java.lang.String query,
java.lang.Object[] parameters)
Retrieve a list of persistent instances with the specified query. |
java.util.List |
PersistenceEngine.retrieve(java.lang.String query,
java.lang.Object[] parameters,
boolean cacheQuery)
Retrieve a list of persistent instances with the specified query. |
java.util.List |
PersistenceEngine.retrieve(java.lang.String queryStr,
java.lang.Object[] parameters,
int firstResult,
int maxRestuls)
Retrieve a list of persistent instances with the specified query and bounds, namely, the maximum number of rows to retrieve and / or the first row to retrieve. |
void |
Transaction.rollback()
Rollback changes. |
void |
PersistenceEngine.save(Persistence object)
Persist the given instance. |
void |
PersistenceSession.save(Persistence object)
Save the given object. |
void |
PersistenceEngine.saveOrMerge(Persistence object)
Save the persistence instance if it's new or merge the persistent instance if it exists. |
void |
PersistenceEngine.saveOrUpdate(Persistence object)
Save the persistence instance if it's new or update the persistent instance if it exists. |
void |
Query.setParameter(int position,
java.lang.Object val)
Bind a value to a JDBC-style query parameter. |
void |
PersistenceEngine.update(Persistence object)
Update the given persistent instance. |
void |
PersistenceSession.update(Persistence object)
Update the given object. |
Uses of EpPersistenceException in com.elasticpath.persistence.impl |
---|
Methods in com.elasticpath.persistence.impl that throw EpPersistenceException | |
---|---|
Transaction |
HibernateSessionImpl.beginTransaction()
Begins a transaction. |
int |
HibernatePersistenceEngineImpl.bulkUpdate(java.lang.String query)
Update/delete all objects according to the given query. |
int |
HibernatePersistenceEngineImpl.bulkUpdate(java.lang.String query,
java.lang.Object[] parameters)
Update/delete all objects according to the given query. |
void |
PrintWriterImpl.close()
Close the file. |
void |
CsvFileReaderImpl.close()
Close the csv file. |
void |
HibernateSessionImpl.close()
Close the session. |
void |
HibernateTransactionImpl.commit()
Commit changes. |
Query |
HibernateSessionImpl.createQuery(java.lang.String queryString)
Creates and returns a query based on the given query string. |
Query |
HibernateSessionImpl.createSQLQuery(java.lang.String queryString)
Creates and returns a query based on the given query string. |
void |
HibernatePersistenceEngineImpl.delete(Persistence object)
Delete the given persistent instance. |
int |
HibernatePersistenceEngineImpl.executeSessionUpdate(java.lang.String sql)
Excute the bulk update with the specified query. |
java.util.List |
HibernatePersistenceEngineImpl.find(java.lang.Class objClass,
java.util.List propertyCriteria)
Retrieve a list of persistent instances of the specified class with the specified property criteria. |
java.util.List |
HibernatePersistenceEngineImpl.find(java.lang.Class objClass,
PropertyCriterion propertyCriterion)
Retrieve a list of persistent instances of the specified class with the specified property criterion. |
java.util.List |
HibernatePersistenceEngineImpl.find(java.lang.Class objClass,
RelationCriterion relationCriterion)
Retrieve a list of persistent instances of the specified class with the specified relation criterion. |
Persistence |
HibernatePersistenceEngineImpl.get(java.lang.Class persistenceClass,
long uidPk)
Get a persistent instance with the given id. |
java.util.List |
CsvFileReaderImpl.getTopLines(int lines)
Read the top lines with the give number. |
java.util.List |
HibernateQueryImpl.list()
Return the query results as a List. |
Persistence |
HibernatePersistenceEngineImpl.load(java.lang.Class persistenceClass,
long uidPk)
Load a persistent instance with the given id. |
void |
ElasticPathDaoXmlFileImpl.loadElasticPath(ElasticPath elasticPath)
Load the elastic path configuration. |
void |
ElasticPathDaoXmlFileImpl.loadGuidedNavigationConfig(ElasticPath elasticPath)
Load the guided navigation config. |
java.util.Map |
PropertiesDaoImpl.loadProperties()
Go through the resources directory and load all the .properties file into the hashMap with the filename (without ".properties") as the key. |
void |
HibernatePersistenceEngineImpl.merge(Persistence object)
Merge the given persistent instance. |
void |
PrintWriterImpl.open(java.lang.String fileName)
Open a file to write. |
void |
CsvFileReaderImpl.open(java.lang.String csvFileName)
Open a csv file. |
void |
CsvFileReaderImpl.open(java.lang.String csvFileName,
char colDelimeter,
char textQualifier)
Open a csv file with the given column delimeter and text qualifier. |
void |
PrintWriterImpl.println(java.lang.String string)
Writes the given string as a line. |
java.lang.String[] |
CsvFileReaderImpl.readNext()
Read the next line. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.util.List queries)
Retrieve a list of persistent instances with the given list of queries. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.util.List queries,
java.lang.Object[] parameters)
Retrieve a list of persistent instances with the given list of queries. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.lang.String query)
Retrieve a list of persistent instances with the specified query. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.lang.String queryStr,
int firstResult,
int maxRestuls)
Retrieve a list of persistent instances with the specified query and bounds, namely, the maximum number of rows to retrieve and / or the first row to retrieve. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.lang.String query,
java.lang.Object[] parameters)
Retrieve a list of persistent instances with the specified query. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.lang.String query,
java.lang.Object[] parameters,
boolean cacheQuery)
Retrieve a list of persistent instances with the specified query. |
java.util.List |
HibernatePersistenceEngineImpl.retrieve(java.lang.String queryStr,
java.lang.Object[] parameters,
int firstResult,
int maxRestuls)
Retrieve a list of persistent instances with the specified query and bounds, namely, the maximum number of rows to retrieve and / or the first row to retrieve. |
void |
HibernateTransactionImpl.rollback()
Rollback changes. |
void |
HibernatePersistenceEngineImpl.save(Persistence object)
Persist the given instance. |
void |
HibernateSessionImpl.save(Persistence object)
Save the given object. |
void |
HibernatePersistenceEngineImpl.saveOrMerge(Persistence object)
Save the persistence instance if it's new or merge the persistent instance if it exists. |
void |
HibernatePersistenceEngineImpl.saveOrUpdate(Persistence object)
Save the persistence instance if it's new or update the persistent instance if it exists. |
void |
HibernateQueryImpl.setParameter(int position,
java.lang.Object val)
Bind a value to a JDBC-style query parameter. |
void |
HibernatePersistenceEngineImpl.update(Persistence object)
Update the given persistent instance. |
void |
HibernateSessionImpl.update(Persistence object)
Update the given object. |
Uses of EpPersistenceException in com.elasticpath.persistence.support.impl |
---|
Methods in com.elasticpath.persistence.support.impl that throw EpPersistenceException | |
---|---|
java.lang.Object |
HibernatePropertyCriterionEqualImpl.getCriterion()
Return the persistence layer specfic criterion object, i.e. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |