Package | Description |
---|---|
com.liferay.portal.kernel.service.persistence |
This package defines the portal service persistence interfaces, classes, and utilities.
|
Modifier and Type | Method and Description |
---|---|
VirtualHost |
VirtualHostPersistence.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 |
VirtualHostUtil.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 |
VirtualHostPersistence.findByHostname(String hostname)
Returns the virtual host where hostname = ? or throws a
NoSuchVirtualHostException if it could not be found. |
static VirtualHost |
VirtualHostUtil.findByHostname(String hostname)
Returns the virtual host where hostname = ? or throws a
NoSuchVirtualHostException if it could not be found. |
VirtualHost |
VirtualHostPersistence.findByPrimaryKey(long virtualHostId)
Returns the virtual host with the primary key or throws a
NoSuchVirtualHostException if it could not be found. |
static VirtualHost |
VirtualHostUtil.findByPrimaryKey(long virtualHostId)
Returns the virtual host with the primary key or throws a
NoSuchVirtualHostException if it could not be found. |
VirtualHost |
VirtualHostPersistence.remove(long virtualHostId)
Removes the virtual host with the primary key from the database.
|
static VirtualHost |
VirtualHostUtil.remove(long virtualHostId)
Removes the virtual host with the primary key from the database.
|
VirtualHost |
VirtualHostPersistence.removeByC_L(long companyId,
long layoutSetId)
Removes the virtual host where companyId = ? and layoutSetId = ? from the database.
|
static VirtualHost |
VirtualHostUtil.removeByC_L(long companyId,
long layoutSetId)
Removes the virtual host where companyId = ? and layoutSetId = ? from the database.
|
VirtualHost |
VirtualHostPersistence.removeByHostname(String hostname)
Removes the virtual host where hostname = ? from the database.
|
static VirtualHost |
VirtualHostUtil.removeByHostname(String hostname)
Removes the virtual host where hostname = ? from the database.
|