public class ListTypeLocalServiceWrapper extends Object implements ListTypeLocalService, ServiceWrapper<ListTypeLocalService>
ListTypeLocalService.ListTypeLocalService| Constructor and Description |
|---|
ListTypeLocalServiceWrapper(ListTypeLocalService listTypeLocalService) |
| Modifier and Type | Method and Description |
|---|---|
ListType |
addListType(ListType listType)
Adds the list type to the database.
|
ListType |
addListType(String name,
String type) |
ListType |
createListType(long listTypeId)
Creates a new list type with the primary key.
|
ListType |
deleteListType(ListType listType)
Deletes the list type from the database.
|
ListType |
deleteListType(long listTypeId)
Deletes the list type with the primary key from the database.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
ListType |
fetchListType(long listTypeId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
ListType |
getListType(long listTypeId)
Returns the list type with the primary key.
|
ListType |
getListType(String name,
String type) |
List<ListType> |
getListTypes(int start,
int end)
Returns a range of all the list types.
|
List<ListType> |
getListTypes(String type) |
int |
getListTypesCount()
Returns the number of list types.
|
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
ListTypeLocalService |
getWrappedService() |
void |
setWrappedService(ListTypeLocalService listTypeLocalService) |
ListType |
updateListType(ListType listType)
Updates the list type in the database or adds it if it does not yet exist.
|
void |
validate(long listTypeId,
long classNameId,
String type) |
void |
validate(long listTypeId,
String type) |
public ListTypeLocalServiceWrapper(ListTypeLocalService listTypeLocalService)
public ListType addListType(ListType listType)
addListType in interface ListTypeLocalServicelistType - the list typepublic ListType addListType(String name, String type)
addListType in interface ListTypeLocalServicepublic ListType createListType(long listTypeId)
createListType in interface ListTypeLocalServicelistTypeId - the primary key for the new list typepublic ListType deleteListType(ListType listType)
deleteListType in interface ListTypeLocalServicelistType - the list typepublic ListType deleteListType(long listTypeId) throws PortalException
deleteListType in interface ListTypeLocalServicelistTypeId - the primary key of the list typePortalException - if a list type with the primary key could not be foundpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface ListTypeLocalServicedeletePersistedModel in interface PersistedModelLocalServicePortalExceptionpublic DynamicQuery dynamicQuery()
dynamicQuery in interface ListTypeLocalServicepublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface ListTypeLocalServicedynamicQuery - the dynamic querypublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.ListTypeModelImpl.
dynamicQuery in interface ListTypeLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.ListTypeModelImpl.
dynamicQuery in interface ListTypeLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount in interface ListTypeLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface ListTypeLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic ListType fetchListType(long listTypeId)
fetchListType in interface ListTypeLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface ListTypeLocalServicepublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface ListTypeLocalServicepublic ListType getListType(long listTypeId) throws PortalException
getListType in interface ListTypeLocalServicelistTypeId - the primary key of the list typePortalException - if a list type with the primary key could not be foundpublic ListType getListType(String name, String type)
getListType in interface ListTypeLocalServicepublic List<ListType> getListTypes(int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.ListTypeModelImpl.
getListTypes in interface ListTypeLocalServicestart - the lower bound of the range of list typesend - the upper bound of the range of list types (not inclusive)public List<ListType> getListTypes(String type)
getListTypes in interface ListTypeLocalServicepublic int getListTypesCount()
getListTypesCount in interface ListTypeLocalServicepublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface ListTypeLocalServicepublic PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface ListTypeLocalServicegetPersistedModel in interface PersistedModelLocalServicePortalExceptionpublic ListType updateListType(ListType listType)
updateListType in interface ListTypeLocalServicelistType - the list typepublic void validate(long listTypeId,
long classNameId,
String type)
throws PortalException
validate in interface ListTypeLocalServicePortalExceptionpublic void validate(long listTypeId,
String type)
throws PortalException
validate in interface ListTypeLocalServicePortalExceptionpublic ListTypeLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<ListTypeLocalService>public void setWrappedService(ListTypeLocalService listTypeLocalService)
setWrappedService in interface ServiceWrapper<ListTypeLocalService>