|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface VirtualHostPersistence
The persistence interface for the virtual host service.
Caching information and settings can be found in portal.properties
VirtualHostPersistenceImpl
,
VirtualHostUtil
Method Summary | |
---|---|
void |
cacheResult(List<VirtualHost> virtualHosts)
Caches the virtual hosts in the entity cache if it is enabled. |
void |
cacheResult(VirtualHost virtualHost)
Caches the virtual host in the entity cache if it is enabled. |
int |
countAll()
Returns the number of virtual hosts. |
int |
countByC_L(long companyId,
long layoutSetId)
Returns the number of virtual hosts where companyId = ? and layoutSetId = ?. |
int |
countByHostname(String hostname)
Returns the number of virtual hosts where hostname = ?. |
VirtualHost |
create(long virtualHostId)
Creates a new virtual host with the primary key. |
VirtualHost |
fetchByC_L(long companyId,
long layoutSetId)
Returns the virtual host where companyId = ? and layoutSetId = ? or returns null if it could not be found. |
VirtualHost |
fetchByC_L(long companyId,
long layoutSetId,
boolean retrieveFromCache)
Returns the virtual host where companyId = ? and layoutSetId = ? or returns null if it could not be found, optionally using the finder cache. |
VirtualHost |
fetchByHostname(String hostname)
Returns the virtual host where hostname = ? or returns null if it could not be found. |
VirtualHost |
fetchByHostname(String hostname,
boolean retrieveFromCache)
Returns the virtual host where hostname = ? or returns null if it could not be found, optionally using the finder cache. |
VirtualHost |
fetchByPrimaryKey(long virtualHostId)
Returns the virtual host with the primary key or returns null if it could not be found. |
List<VirtualHost> |
findAll()
Returns all the virtual hosts. |
List<VirtualHost> |
findAll(int start,
int end)
Returns a range of all the virtual hosts. |
List<VirtualHost> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the virtual hosts. |
VirtualHost |
findByC_L(long companyId,
long layoutSetId)
Returns the virtual host where companyId = ? and layoutSetId = ? or throws a NoSuchVirtualHostException if it could not be found. |
VirtualHost |
findByHostname(String hostname)
Returns the virtual host where hostname = ? or throws a NoSuchVirtualHostException if it could not be found. |
VirtualHost |
findByPrimaryKey(long virtualHostId)
Returns the virtual host with the primary key or throws a NoSuchVirtualHostException if it could not be found. |
VirtualHost |
remove(long virtualHostId)
Removes the virtual host with the primary key from the database. |
void |
removeAll()
Removes all the virtual hosts from the database. |
VirtualHost |
removeByC_L(long companyId,
long layoutSetId)
Removes the virtual host where companyId = ? and layoutSetId = ? from the database. |
VirtualHost |
removeByHostname(String hostname)
Removes the virtual host where hostname = ? from the database. |
VirtualHost |
updateImpl(VirtualHost virtualHost,
boolean merge)
|
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
Method Detail |
---|
void cacheResult(VirtualHost virtualHost)
virtualHost
- the virtual hostvoid cacheResult(List<VirtualHost> virtualHosts)
virtualHosts
- the virtual hostsVirtualHost create(long virtualHostId)
virtualHostId
- the primary key for the new virtual host
VirtualHost remove(long virtualHostId) throws NoSuchVirtualHostException, SystemException
virtualHostId
- the primary key of the virtual host
NoSuchVirtualHostException
- if a virtual host with the primary key could not be found
SystemException
- if a system exception occurredVirtualHost updateImpl(VirtualHost virtualHost, boolean merge) throws SystemException
SystemException
VirtualHost findByPrimaryKey(long virtualHostId) throws NoSuchVirtualHostException, SystemException
NoSuchVirtualHostException
if it could not be found.
virtualHostId
- the primary key of the virtual host
NoSuchVirtualHostException
- if a virtual host with the primary key could not be found
SystemException
- if a system exception occurredVirtualHost fetchByPrimaryKey(long virtualHostId) throws SystemException
null
if it could not be found.
virtualHostId
- the primary key of the virtual host
null
if a virtual host with the primary key could not be found
SystemException
- if a system exception occurredVirtualHost findByHostname(String hostname) throws NoSuchVirtualHostException, SystemException
NoSuchVirtualHostException
if it could not be found.
hostname
- the hostname
NoSuchVirtualHostException
- if a matching virtual host could not be found
SystemException
- if a system exception occurredVirtualHost fetchByHostname(String hostname) throws SystemException
null
if it could not be found. Uses the finder cache.
hostname
- the hostname
null
if a matching virtual host could not be found
SystemException
- if a system exception occurredVirtualHost fetchByHostname(String hostname, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
hostname
- the hostnameretrieveFromCache
- whether to use the finder cache
null
if a matching virtual host could not be found
SystemException
- if a system exception occurredVirtualHost findByC_L(long companyId, long layoutSetId) throws NoSuchVirtualHostException, SystemException
NoSuchVirtualHostException
if it could not be found.
companyId
- the company IDlayoutSetId
- the layout set ID
NoSuchVirtualHostException
- if a matching virtual host could not be found
SystemException
- if a system exception occurredVirtualHost fetchByC_L(long companyId, long layoutSetId) throws SystemException
null
if it could not be found. Uses the finder cache.
companyId
- the company IDlayoutSetId
- the layout set ID
null
if a matching virtual host could not be found
SystemException
- if a system exception occurredVirtualHost fetchByC_L(long companyId, long layoutSetId, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
companyId
- the company IDlayoutSetId
- the layout set IDretrieveFromCache
- whether to use the finder cache
null
if a matching virtual host could not be found
SystemException
- if a system exception occurredList<VirtualHost> findAll() throws SystemException
SystemException
- if a system exception occurredList<VirtualHost> 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 virtual hostsend
- the upper bound of the range of virtual hosts (not inclusive)
SystemException
- if a system exception occurredList<VirtualHost> 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 virtual hostsend
- the upper bound of the range of virtual hosts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredVirtualHost removeByHostname(String hostname) throws NoSuchVirtualHostException, SystemException
hostname
- the hostname
SystemException
- if a system exception occurred
NoSuchVirtualHostException
VirtualHost removeByC_L(long companyId, long layoutSetId) throws NoSuchVirtualHostException, SystemException
companyId
- the company IDlayoutSetId
- the layout set ID
SystemException
- if a system exception occurred
NoSuchVirtualHostException
void removeAll() throws SystemException
SystemException
- if a system exception occurredint countByHostname(String hostname) throws SystemException
hostname
- the hostname
SystemException
- if a system exception occurredint countByC_L(long companyId, long layoutSetId) throws SystemException
companyId
- the company IDlayoutSetId
- the layout set ID
SystemException
- if a system exception occurredint countAll() throws SystemException
SystemException
- if a system exception occurred
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |