|
Liferay 6.2.0-ce-m5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.persistence.VirtualHostUtil
public class VirtualHostUtil
The persistence utility for the virtual host service. This utility wraps VirtualHostPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
VirtualHostPersistence,
VirtualHostPersistenceImpl| Constructor Summary | |
|---|---|
VirtualHostUtil()
|
|
| Method Summary | |
|---|---|
static void |
cacheResult(List<VirtualHost> virtualHosts)
Caches the virtual hosts in the entity cache if it is enabled. |
static void |
cacheResult(VirtualHost virtualHost)
Caches the virtual host in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(VirtualHost virtualHost)
|
static int |
countAll()
Returns the number of virtual hosts. |
static int |
countByC_L(long companyId,
long layoutSetId)
Returns the number of virtual hosts where companyId = ? and layoutSetId = ?. |
static int |
countByHostname(String hostname)
Returns the number of virtual hosts where hostname = ?. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static VirtualHost |
create(long virtualHostId)
Creates a new virtual host with the primary key. |
static VirtualHost |
fetchByC_L(long companyId,
long layoutSetId)
Returns the virtual host where companyId = ? and layoutSetId = ? or returns null if it could not be found. |
static 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. |
static VirtualHost |
fetchByHostname(String hostname)
Returns the virtual host where hostname = ? or returns null if it could not be found. |
static 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. |
static VirtualHost |
fetchByPrimaryKey(long virtualHostId)
Returns the virtual host with the primary key or returns null if it could not be found. |
static List<VirtualHost> |
findAll()
Returns all the virtual hosts. |
static List<VirtualHost> |
findAll(int start,
int end)
Returns a range of all the virtual hosts. |
static List<VirtualHost> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the virtual hosts. |
static 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. |
static VirtualHost |
findByHostname(String hostname)
Returns the virtual host where hostname = ? or throws a NoSuchVirtualHostException if it could not be found. |
static VirtualHost |
findByPrimaryKey(long virtualHostId)
Returns the virtual host with the primary key or throws a NoSuchVirtualHostException if it could not be found. |
static List<VirtualHost> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<VirtualHost> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<VirtualHost> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static VirtualHostPersistence |
getPersistence()
|
static VirtualHost |
remove(long virtualHostId)
Removes the virtual host with the primary key from the database. |
static void |
removeAll()
Removes all the virtual hosts from the database. |
static VirtualHost |
removeByC_L(long companyId,
long layoutSetId)
Removes the virtual host where companyId = ? and layoutSetId = ? from the database. |
static VirtualHost |
removeByHostname(String hostname)
Removes the virtual host where hostname = ? from the database. |
void |
setPersistence(VirtualHostPersistence persistence)
Deprecated. As of 6.2.0 |
static VirtualHost |
update(VirtualHost virtualHost)
|
static VirtualHost |
update(VirtualHost virtualHost,
ServiceContext serviceContext)
|
static VirtualHost |
updateImpl(VirtualHost virtualHost)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public VirtualHostUtil()
| Method Detail |
|---|
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(VirtualHost virtualHost)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<VirtualHost> findWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<VirtualHost> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<VirtualHost> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static VirtualHost update(VirtualHost virtualHost)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel)
public static VirtualHost update(VirtualHost virtualHost,
ServiceContext serviceContext)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)
public static VirtualHost 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 occurred
public static VirtualHost 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 occurred
public static VirtualHost 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 occurred
public static VirtualHost removeByHostname(String hostname)
throws NoSuchVirtualHostException,
SystemException
hostname - the hostname
SystemException - if a system exception occurred
NoSuchVirtualHostException
public static int countByHostname(String hostname)
throws SystemException
hostname - the hostname
SystemException - if a system exception occurred
public static VirtualHost 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 occurred
public static VirtualHost 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 occurred
public static VirtualHost 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 occurred
public static 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
public static int countByC_L(long companyId,
long layoutSetId)
throws SystemException
companyId - the company IDlayoutSetId - the layout set ID
SystemException - if a system exception occurredpublic static void cacheResult(VirtualHost virtualHost)
virtualHost - the virtual hostpublic static void cacheResult(List<VirtualHost> virtualHosts)
virtualHosts - the virtual hostspublic static VirtualHost create(long virtualHostId)
virtualHostId - the primary key for the new virtual host
public static 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 occurred
public static VirtualHost updateImpl(VirtualHost virtualHost)
throws SystemException
SystemException
public static 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 occurred
public static VirtualHost 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 occurred
public static List<VirtualHost> findAll()
throws SystemException
SystemException - if a system exception occurred
public static List<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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from VirtualHostModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 occurred
public static List<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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from VirtualHostModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 occurred
public static void removeAll()
throws SystemException
SystemException - if a system exception occurred
public static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static VirtualHostPersistence getPersistence()
public void setPersistence(VirtualHostPersistence persistence)
|
Liferay 6.2.0-ce-m5 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||