|
Liferay 6.0.6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.PortletItemLocalServiceWrapper
public class PortletItemLocalServiceWrapper
This class is a wrapper for PortletItemLocalService.
PortletItemLocalService| Constructor Summary | |
|---|---|
PortletItemLocalServiceWrapper(PortletItemLocalService portletItemLocalService)
|
|
| Method Summary | |
|---|---|
PortletItem |
addPortletItem(long userId,
long groupId,
String name,
String portletId,
String className)
|
PortletItem |
addPortletItem(PortletItem portletItem)
Adds the portlet item to the database. |
PortletItem |
createPortletItem(long portletItemId)
Creates a new portlet item with the primary key. |
void |
deletePortletItem(long portletItemId)
Deletes the portlet item with the primary key from the database. |
void |
deletePortletItem(PortletItem portletItem)
Deletes the portlet item from the database. |
List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Counts the number of rows that match the dynamic query. |
PortletItem |
getPortletItem(long portletItemId)
Gets the portlet item with the primary key. |
PortletItem |
getPortletItem(long groupId,
String name,
String portletId,
String className)
|
List<PortletItem> |
getPortletItems(int start,
int end)
Gets a range of all the portlet items. |
List<PortletItem> |
getPortletItems(long groupId,
String className)
|
List<PortletItem> |
getPortletItems(long groupId,
String portletId,
String className)
|
int |
getPortletItemsCount()
Gets the number of portlet items. |
PortletItemLocalService |
getWrappedPortletItemLocalService()
|
PortletItem |
updatePortletItem(long userId,
long groupId,
String name,
String portletId,
String className)
|
PortletItem |
updatePortletItem(PortletItem portletItem)
Updates the portlet item in the database. |
PortletItem |
updatePortletItem(PortletItem portletItem,
boolean merge)
Updates the portlet item in the database. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public PortletItemLocalServiceWrapper(PortletItemLocalService portletItemLocalService)
| Method Detail |
|---|
public PortletItem addPortletItem(PortletItem portletItem)
throws SystemException
addPortletItem in interface PortletItemLocalServiceportletItem - the portlet item to add
SystemException - if a system exception occurredpublic PortletItem createPortletItem(long portletItemId)
createPortletItem in interface PortletItemLocalServiceportletItemId - the primary key for the new portlet item
public void deletePortletItem(long portletItemId)
throws PortalException,
SystemException
deletePortletItem in interface PortletItemLocalServiceportletItemId - the primary key of the portlet item to delete
PortalException - if a portlet item with the primary key could not be found
SystemException - if a system exception occurred
public void deletePortletItem(PortletItem portletItem)
throws SystemException
deletePortletItem in interface PortletItemLocalServiceportletItem - the portlet item to delete
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery in interface PortletItemLocalServicedynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
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.
dynamicQuery in interface PortletItemLocalServicedynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
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.
dynamicQuery in interface PortletItemLocalServicedynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQueryCount in interface PortletItemLocalServicedynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
public PortletItem getPortletItem(long portletItemId)
throws PortalException,
SystemException
getPortletItem in interface PortletItemLocalServiceportletItemId - the primary key of the portlet item to get
PortalException - if a portlet item with the primary key could not be found
SystemException - if a system exception occurred
public List<PortletItem> getPortletItems(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.
getPortletItems in interface PortletItemLocalServicestart - the lower bound of the range of portlet items to returnend - the upper bound of the range of portlet items to return (not inclusive)
SystemException - if a system exception occurred
public int getPortletItemsCount()
throws SystemException
getPortletItemsCount in interface PortletItemLocalServiceSystemException - if a system exception occurred
public PortletItem updatePortletItem(PortletItem portletItem)
throws SystemException
updatePortletItem in interface PortletItemLocalServiceportletItem - the portlet item to update
SystemException - if a system exception occurred
public PortletItem updatePortletItem(PortletItem portletItem,
boolean merge)
throws SystemException
updatePortletItem in interface PortletItemLocalServiceportletItem - the portlet item to updatemerge - whether to merge the portlet item with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
SystemException - if a system exception occurred
public PortletItem addPortletItem(long userId,
long groupId,
String name,
String portletId,
String className)
throws PortalException,
SystemException
addPortletItem in interface PortletItemLocalServicePortalException
SystemException
public PortletItem getPortletItem(long groupId,
String name,
String portletId,
String className)
throws PortalException,
SystemException
getPortletItem in interface PortletItemLocalServicePortalException
SystemException
public List<PortletItem> getPortletItems(long groupId,
String className)
throws SystemException
getPortletItems in interface PortletItemLocalServiceSystemException
public List<PortletItem> getPortletItems(long groupId,
String portletId,
String className)
throws SystemException
getPortletItems in interface PortletItemLocalServiceSystemException
public PortletItem updatePortletItem(long userId,
long groupId,
String name,
String portletId,
String className)
throws PortalException,
SystemException
updatePortletItem in interface PortletItemLocalServicePortalException
SystemExceptionpublic PortletItemLocalService getWrappedPortletItemLocalService()
|
Liferay 6.0.6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||