Liferay 7.0-ce-b4

com.liferay.portal.service
Class ListTypeLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.ListTypeLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, ListTypeLocalService, PersistedModelLocalService, ServiceWrapper<ListTypeLocalService>

@ProviderType
public class ListTypeLocalServiceWrapper
extends Object
implements ListTypeLocalService, ServiceWrapper<ListTypeLocalService>

Provides a wrapper for ListTypeLocalService.

See Also:
ListTypeLocalService

Constructor Summary
ListTypeLocalServiceWrapper(ListTypeLocalService listTypeLocalService)
           
 
Method Summary
 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.
 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)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ListTypeLocalServiceWrapper

public ListTypeLocalServiceWrapper(ListTypeLocalService listTypeLocalService)
Method Detail

addListType

public ListType addListType(ListType listType)
Adds the list type to the database. Also notifies the appropriate model listeners.

Specified by:
addListType in interface ListTypeLocalService
Parameters:
listType - the list type
Returns:
the list type that was added

addListType

public ListType addListType(String name,
                            String type)
Specified by:
addListType in interface ListTypeLocalService

createListType

public ListType createListType(long listTypeId)
Creates a new list type with the primary key. Does not add the list type to the database.

Specified by:
createListType in interface ListTypeLocalService
Parameters:
listTypeId - the primary key for the new list type
Returns:
the new list type

deleteListType

public ListType deleteListType(ListType listType)
Deletes the list type from the database. Also notifies the appropriate model listeners.

Specified by:
deleteListType in interface ListTypeLocalService
Parameters:
listType - the list type
Returns:
the list type that was removed

deleteListType

public ListType deleteListType(long listTypeId)
                        throws PortalException
Deletes the list type with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteListType in interface ListTypeLocalService
Parameters:
listTypeId - the primary key of the list type
Returns:
the list type that was removed
Throws:
PortalException - if a list type with the primary key could not be found

deletePersistedModel

public PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                    throws PortalException
Specified by:
deletePersistedModel in interface ListTypeLocalService
Specified by:
deletePersistedModel in interface PersistedModelLocalService
Throws:
PortalException

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface ListTypeLocalService

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface ListTypeLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows

dynamicQuery

public <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.

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 ListTypeModelImpl. 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.

Specified by:
dynamicQuery in interface ListTypeLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows

dynamicQuery

public <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.

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 ListTypeModelImpl. 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.

Specified by:
dynamicQuery in interface ListTypeLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface ListTypeLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery,
                              Projection projection)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface ListTypeLocalService
Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchListType

public ListType fetchListType(long listTypeId)
Specified by:
fetchListType in interface ListTypeLocalService

getActionableDynamicQuery

public ActionableDynamicQuery getActionableDynamicQuery()
Specified by:
getActionableDynamicQuery in interface ListTypeLocalService

getIndexableActionableDynamicQuery

public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
Specified by:
getIndexableActionableDynamicQuery in interface ListTypeLocalService

getListType

public ListType getListType(long listTypeId)
                     throws PortalException
Returns the list type with the primary key.

Specified by:
getListType in interface ListTypeLocalService
Parameters:
listTypeId - the primary key of the list type
Returns:
the list type
Throws:
PortalException - if a list type with the primary key could not be found

getListTypes

public List<ListType> getListTypes(int start,
                                   int end)
Returns a range of all the list types.

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 ListTypeModelImpl. 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.

Specified by:
getListTypes in interface ListTypeLocalService
Parameters:
start - the lower bound of the range of list types
end - the upper bound of the range of list types (not inclusive)
Returns:
the range of list types

getListTypes

public List<ListType> getListTypes(String type)
Specified by:
getListTypes in interface ListTypeLocalService

getListTypesCount

public int getListTypesCount()
Returns the number of list types.

Specified by:
getListTypesCount in interface ListTypeLocalService
Returns:
the number of list types

getOSGiServiceIdentifier

public String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Specified by:
getOSGiServiceIdentifier in interface ListTypeLocalService
Returns:
the OSGi service identifier

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException
Specified by:
getPersistedModel in interface ListTypeLocalService
Specified by:
getPersistedModel in interface PersistedModelLocalService
Throws:
PortalException

updateListType

public ListType updateListType(ListType listType)
Updates the list type in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateListType in interface ListTypeLocalService
Parameters:
listType - the list type
Returns:
the list type that was updated

validate

public void validate(long listTypeId,
                     long classNameId,
                     String type)
              throws PortalException
Specified by:
validate in interface ListTypeLocalService
Throws:
PortalException

validate

public void validate(long listTypeId,
                     String type)
              throws PortalException
Specified by:
validate in interface ListTypeLocalService
Throws:
PortalException

getWrappedService

public ListTypeLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<ListTypeLocalService>

setWrappedService

public void setWrappedService(ListTypeLocalService listTypeLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<ListTypeLocalService>

Liferay 7.0-ce-b4