|
Liferay 6.0.5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface CompanyPersistence
The persistence interface for the company service.
Never modify or reference this interface directly. Always use CompanyUtil to access the company persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.
Caching information and settings can be found in portal.properties
CompanyPersistenceImpl,
CompanyUtil| Method Summary | |
|---|---|
void |
cacheResult(Company company)
Caches the company in the entity cache if it is enabled. |
void |
cacheResult(List<Company> companies)
Caches the companies in the entity cache if it is enabled. |
int |
countAll()
Counts all the companies. |
int |
countByLogoId(long logoId)
Counts all the companies where logoId = ?. |
int |
countByMx(String mx)
Counts all the companies where mx = ?. |
int |
countBySystem(boolean system)
Counts all the companies where system = ?. |
int |
countByVirtualHost(String virtualHost)
Counts all the companies where virtualHost = ?. |
int |
countByWebId(String webId)
Counts all the companies where webId = ?. |
Company |
create(long companyId)
Creates a new company with the primary key. |
Company |
fetchByLogoId(long logoId)
Finds the company where logoId = ? or returns null if it could not be found. |
Company |
fetchByLogoId(long logoId,
boolean retrieveFromCache)
Finds the company where logoId = ? or returns null if it could not be found, optionally using the finder cache. |
Company |
fetchByMx(String mx)
Finds the company where mx = ? or returns null if it could not be found. |
Company |
fetchByMx(String mx,
boolean retrieveFromCache)
Finds the company where mx = ? or returns null if it could not be found, optionally using the finder cache. |
Company |
fetchByPrimaryKey(long companyId)
Finds the company with the primary key or returns null if it could not be found. |
Company |
fetchByVirtualHost(String virtualHost)
Finds the company where virtualHost = ? or returns null if it could not be found. |
Company |
fetchByVirtualHost(String virtualHost,
boolean retrieveFromCache)
Finds the company where virtualHost = ? or returns null if it could not be found, optionally using the finder cache. |
Company |
fetchByWebId(String webId)
Finds the company where webId = ? or returns null if it could not be found. |
Company |
fetchByWebId(String webId,
boolean retrieveFromCache)
Finds the company where webId = ? or returns null if it could not be found, optionally using the finder cache. |
List<Company> |
findAll()
Finds all the companies. |
List<Company> |
findAll(int start,
int end)
Finds a range of all the companies. |
List<Company> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the companies. |
Company |
findByLogoId(long logoId)
Finds the company where logoId = ? or throws a NoSuchCompanyException if it could not be found. |
Company |
findByMx(String mx)
Finds the company where mx = ? or throws a NoSuchCompanyException if it could not be found. |
Company |
findByPrimaryKey(long companyId)
Finds the company with the primary key or throws a NoSuchCompanyException if it could not be found. |
Company |
findBySystem_First(boolean system,
OrderByComparator orderByComparator)
Finds the first company in the ordered set where system = ?. |
Company |
findBySystem_Last(boolean system,
OrderByComparator orderByComparator)
Finds the last company in the ordered set where system = ?. |
Company[] |
findBySystem_PrevAndNext(long companyId,
boolean system,
OrderByComparator orderByComparator)
Finds the companies before and after the current company in the ordered set where system = ?. |
List<Company> |
findBySystem(boolean system)
Finds all the companies where system = ?. |
List<Company> |
findBySystem(boolean system,
int start,
int end)
Finds a range of all the companies where system = ?. |
List<Company> |
findBySystem(boolean system,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the companies where system = ?. |
Company |
findByVirtualHost(String virtualHost)
Finds the company where virtualHost = ? or throws a NoSuchCompanyException if it could not be found. |
Company |
findByWebId(String webId)
Finds the company where webId = ? or throws a NoSuchCompanyException if it could not be found. |
Company |
remove(long companyId)
Removes the company with the primary key from the database. |
void |
removeAll()
Removes all the companies from the database. |
void |
removeByLogoId(long logoId)
Removes the company where logoId = ? from the database. |
void |
removeByMx(String mx)
Removes the company where mx = ? from the database. |
void |
removeBySystem(boolean system)
Removes all the companies where system = ? from the database. |
void |
removeByVirtualHost(String virtualHost)
Removes the company where virtualHost = ? from the database. |
void |
removeByWebId(String webId)
Removes the company where webId = ? from the database. |
Company |
updateImpl(Company company,
boolean merge)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
| Method Detail |
|---|
void cacheResult(Company company)
company - the company to cachevoid cacheResult(List<Company> companies)
companies - the companies to cacheCompany create(long companyId)
companyId - the primary key for the new company
Company remove(long companyId)
throws NoSuchCompanyException,
SystemException
companyId - the primary key of the company to remove
NoSuchCompanyException - if a company with the primary key could not be found
SystemException - if a system exception occurred
Company updateImpl(Company company,
boolean merge)
throws SystemException
SystemException
Company findByPrimaryKey(long companyId)
throws NoSuchCompanyException,
SystemException
NoSuchCompanyException if it could not be found.
companyId - the primary key of the company to find
NoSuchCompanyException - if a company with the primary key could not be found
SystemException - if a system exception occurred
Company fetchByPrimaryKey(long companyId)
throws SystemException
null if it could not be found.
companyId - the primary key of the company to find
null if a company with the primary key could not be found
SystemException - if a system exception occurred
Company findByWebId(String webId)
throws NoSuchCompanyException,
SystemException
NoSuchCompanyException if it could not be found.
webId - the web id to search with
NoSuchCompanyException - if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByWebId(String webId)
throws SystemException
null if it could not be found. Uses the finder cache.
webId - the web id to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByWebId(String webId,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
webId - the web id to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company findByVirtualHost(String virtualHost)
throws NoSuchCompanyException,
SystemException
NoSuchCompanyException if it could not be found.
virtualHost - the virtual host to search with
NoSuchCompanyException - if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByVirtualHost(String virtualHost)
throws SystemException
null if it could not be found. Uses the finder cache.
virtualHost - the virtual host to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByVirtualHost(String virtualHost,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
virtualHost - the virtual host to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company findByMx(String mx)
throws NoSuchCompanyException,
SystemException
NoSuchCompanyException if it could not be found.
mx - the mx to search with
NoSuchCompanyException - if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByMx(String mx)
throws SystemException
null if it could not be found. Uses the finder cache.
mx - the mx to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByMx(String mx,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
mx - the mx to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company findByLogoId(long logoId)
throws NoSuchCompanyException,
SystemException
NoSuchCompanyException if it could not be found.
logoId - the logo id to search with
NoSuchCompanyException - if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByLogoId(long logoId)
throws SystemException
null if it could not be found. Uses the finder cache.
logoId - the logo id to search with
null if a matching company could not be found
SystemException - if a system exception occurred
Company fetchByLogoId(long logoId,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
logoId - the logo id to search with
null if a matching company could not be found
SystemException - if a system exception occurred
List<Company> findBySystem(boolean system)
throws SystemException
system - the system to search with
SystemException - if a system exception occurred
List<Company> findBySystem(boolean system,
int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
system - the system to search withstart - the lower bound of the range of companies to returnend - the upper bound of the range of companies to return (not inclusive)
SystemException - if a system exception occurred
List<Company> findBySystem(boolean system,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
system - the system to search withstart - the lower bound of the range of companies to returnend - the upper bound of the range of companies to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
Company findBySystem_First(boolean system,
OrderByComparator orderByComparator)
throws NoSuchCompanyException,
SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
system - the system to search withorderByComparator - the comparator to order the set by
NoSuchCompanyException - if a matching company could not be found
SystemException - if a system exception occurred
Company findBySystem_Last(boolean system,
OrderByComparator orderByComparator)
throws NoSuchCompanyException,
SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
system - the system to search withorderByComparator - the comparator to order the set by
NoSuchCompanyException - if a matching company could not be found
SystemException - if a system exception occurred
Company[] findBySystem_PrevAndNext(long companyId,
boolean system,
OrderByComparator orderByComparator)
throws NoSuchCompanyException,
SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
companyId - the primary key of the current companysystem - the system to search withorderByComparator - the comparator to order the set by
NoSuchCompanyException - if a company with the primary key could not be found
SystemException - if a system exception occurred
List<Company> findAll()
throws SystemException
SystemException - if a system exception occurred
List<Company> findAll(int start,
int end)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
start - the lower bound of the range of companies to returnend - the upper bound of the range of companies to return (not inclusive)
SystemException - if a system exception occurred
List<Company> findAll(int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.
start - the lower bound of the range of companies to returnend - the upper bound of the range of companies to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
void removeByWebId(String webId)
throws NoSuchCompanyException,
SystemException
webId - the web id to search with
SystemException - if a system exception occurred
NoSuchCompanyException
void removeByVirtualHost(String virtualHost)
throws NoSuchCompanyException,
SystemException
virtualHost - the virtual host to search with
SystemException - if a system exception occurred
NoSuchCompanyException
void removeByMx(String mx)
throws NoSuchCompanyException,
SystemException
mx - the mx to search with
SystemException - if a system exception occurred
NoSuchCompanyException
void removeByLogoId(long logoId)
throws NoSuchCompanyException,
SystemException
logoId - the logo id to search with
SystemException - if a system exception occurred
NoSuchCompanyException
void removeBySystem(boolean system)
throws SystemException
system - the system to search with
SystemException - if a system exception occurred
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countByWebId(String webId)
throws SystemException
webId - the web id to search with
SystemException - if a system exception occurred
int countByVirtualHost(String virtualHost)
throws SystemException
virtualHost - the virtual host to search with
SystemException - if a system exception occurred
int countByMx(String mx)
throws SystemException
mx - the mx to search with
SystemException - if a system exception occurred
int countByLogoId(long logoId)
throws SystemException
logoId - the logo id to search with
SystemException - if a system exception occurred
int countBySystem(boolean system)
throws SystemException
system - the system to search with
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.0.5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||