Liferay 6.0.5

com.liferay.portal.service
Class PortletLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.PortletLocalServiceWrapper
All Implemented Interfaces:
PortletLocalService

public class PortletLocalServiceWrapper
extends Object
implements PortletLocalService

This class is a wrapper for PortletLocalService.

See Also:
PortletLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
PortletLocalServiceWrapper(PortletLocalService portletLocalService)
           
 
Method Summary
 Portlet addPortlet(Portlet portlet)
          Adds the portlet to the database.
 void checkPortlet(Portlet portlet)
           
 void checkPortlets(long companyId)
           
 void clearCache()
           
 Portlet clonePortlet(long companyId, String portletId)
           
 Portlet createPortlet(long id)
          Creates a new portlet with the primary key.
 void deletePortlet(long id)
          Deletes the portlet with the primary key from the database.
 void deletePortlet(Portlet portlet)
          Deletes the portlet from the database.
 Portlet deployRemotePortlet(Portlet portlet, String categoryName)
           
 void destroyPortlet(Portlet portlet)
           
 void destroyRemotePortlet(Portlet portlet)
           
 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.
 List<CustomAttributesDisplay> getCustomAttributesDisplays()
           
 PortletCategory getEARDisplay(String xml)
           
 List<Portlet> getFriendlyURLMapperPortlets()
           
 List<FriendlyURLMapper> getFriendlyURLMappers()
           
 Portlet getPortlet(long id)
          Gets the portlet with the primary key.
 PortletApp getPortletApp(String servletContextName)
           
 Portlet getPortletById(long companyId, String portletId)
           
 Portlet getPortletById(String portletId)
           
 Portlet getPortletByStrutsPath(long companyId, String strutsPath)
           
 List<Portlet> getPortlets()
           
 List<Portlet> getPortlets(int start, int end)
          Gets a range of all the portlets.
 List<Portlet> getPortlets(long companyId)
           
 List<Portlet> getPortlets(long companyId, boolean showSystem, boolean showPortal)
           
 int getPortletsCount()
          Gets the number of portlets.
 PortletCategory getWARDisplay(String servletContextName, String xml)
           
 PortletLocalService getWrappedPortletLocalService()
           
 boolean hasPortlet(long companyId, String portletId)
           
 void initEAR(javax.servlet.ServletContext servletContext, String[] xmls, PluginPackage pluginPackage)
           
 List<Portlet> initWAR(String servletContextName, javax.servlet.ServletContext servletContext, String[] xmls, PluginPackage pluginPackage)
           
 Portlet updatePortlet(long companyId, String portletId, String roles, boolean active)
           
 Portlet updatePortlet(Portlet portlet)
          Updates the portlet in the database.
 Portlet updatePortlet(Portlet portlet, boolean merge)
          Updates the portlet in the database.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PortletLocalServiceWrapper

public PortletLocalServiceWrapper(PortletLocalService portletLocalService)
Method Detail

addPortlet

public Portlet addPortlet(Portlet portlet)
                   throws SystemException
Adds the portlet to the database. Also notifies the appropriate model listeners.

Specified by:
addPortlet in interface PortletLocalService
Parameters:
portlet - the portlet to add
Returns:
the portlet that was added
Throws:
SystemException - if a system exception occurred

createPortlet

public Portlet createPortlet(long id)
Creates a new portlet with the primary key. Does not add the portlet to the database.

Specified by:
createPortlet in interface PortletLocalService
Parameters:
id - the primary key for the new portlet
Returns:
the new portlet

deletePortlet

public void deletePortlet(long id)
                   throws PortalException,
                          SystemException
Deletes the portlet with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deletePortlet in interface PortletLocalService
Parameters:
id - the primary key of the portlet to delete
Throws:
PortalException - if a portlet with the primary key could not be found
SystemException - if a system exception occurred

deletePortlet

public void deletePortlet(Portlet portlet)
                   throws SystemException
Deletes the portlet from the database. Also notifies the appropriate model listeners.

Specified by:
deletePortlet in interface PortletLocalService
Parameters:
portlet - the portlet to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface PortletLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
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.

Specified by:
dynamicQuery in interface PortletLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
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.

Specified by:
dynamicQuery in interface PortletLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface PortletLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getPortlet

public Portlet getPortlet(long id)
                   throws PortalException,
                          SystemException
Gets the portlet with the primary key.

Specified by:
getPortlet in interface PortletLocalService
Parameters:
id - the primary key of the portlet to get
Returns:
the portlet
Throws:
PortalException - if a portlet with the primary key could not be found
SystemException - if a system exception occurred

getPortlets

public List<Portlet> getPortlets(int start,
                                 int end)
                          throws SystemException
Gets a range of all the portlets.

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.

Specified by:
getPortlets in interface PortletLocalService
Parameters:
start - the lower bound of the range of portlets to return
end - the upper bound of the range of portlets to return (not inclusive)
Returns:
the range of portlets
Throws:
SystemException - if a system exception occurred

getPortletsCount

public int getPortletsCount()
                     throws SystemException
Gets the number of portlets.

Specified by:
getPortletsCount in interface PortletLocalService
Returns:
the number of portlets
Throws:
SystemException - if a system exception occurred

updatePortlet

public Portlet updatePortlet(Portlet portlet)
                      throws SystemException
Updates the portlet in the database. Also notifies the appropriate model listeners.

Specified by:
updatePortlet in interface PortletLocalService
Parameters:
portlet - the portlet to update
Returns:
the portlet that was updated
Throws:
SystemException - if a system exception occurred

updatePortlet

public Portlet updatePortlet(Portlet portlet,
                             boolean merge)
                      throws SystemException
Updates the portlet in the database. Also notifies the appropriate model listeners.

Specified by:
updatePortlet in interface PortletLocalService
Parameters:
portlet - the portlet to update
merge - whether to merge the portlet with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the portlet that was updated
Throws:
SystemException - if a system exception occurred

checkPortlet

public void checkPortlet(Portlet portlet)
                  throws PortalException,
                         SystemException
Specified by:
checkPortlet in interface PortletLocalService
Throws:
PortalException
SystemException

checkPortlets

public void checkPortlets(long companyId)
                   throws PortalException,
                          SystemException
Specified by:
checkPortlets in interface PortletLocalService
Throws:
PortalException
SystemException

clearCache

public void clearCache()
Specified by:
clearCache in interface PortletLocalService

clonePortlet

public Portlet clonePortlet(long companyId,
                            String portletId)
                     throws SystemException
Specified by:
clonePortlet in interface PortletLocalService
Throws:
SystemException

deployRemotePortlet

public Portlet deployRemotePortlet(Portlet portlet,
                                   String categoryName)
                            throws SystemException
Specified by:
deployRemotePortlet in interface PortletLocalService
Throws:
SystemException

destroyPortlet

public void destroyPortlet(Portlet portlet)
Specified by:
destroyPortlet in interface PortletLocalService

destroyRemotePortlet

public void destroyRemotePortlet(Portlet portlet)
Specified by:
destroyRemotePortlet in interface PortletLocalService

getCustomAttributesDisplays

public List<CustomAttributesDisplay> getCustomAttributesDisplays()
Specified by:
getCustomAttributesDisplays in interface PortletLocalService

getEARDisplay

public PortletCategory getEARDisplay(String xml)
                              throws SystemException
Specified by:
getEARDisplay in interface PortletLocalService
Throws:
SystemException

getFriendlyURLMapperPortlets

public List<Portlet> getFriendlyURLMapperPortlets()
Specified by:
getFriendlyURLMapperPortlets in interface PortletLocalService

getFriendlyURLMappers

public List<FriendlyURLMapper> getFriendlyURLMappers()
Specified by:
getFriendlyURLMappers in interface PortletLocalService

getPortletApp

public PortletApp getPortletApp(String servletContextName)
Specified by:
getPortletApp in interface PortletLocalService

getPortletById

public Portlet getPortletById(long companyId,
                              String portletId)
                       throws SystemException
Specified by:
getPortletById in interface PortletLocalService
Throws:
SystemException

getPortletById

public Portlet getPortletById(String portletId)
Specified by:
getPortletById in interface PortletLocalService

getPortletByStrutsPath

public Portlet getPortletByStrutsPath(long companyId,
                                      String strutsPath)
                               throws SystemException
Specified by:
getPortletByStrutsPath in interface PortletLocalService
Throws:
SystemException

getPortlets

public List<Portlet> getPortlets()
Specified by:
getPortlets in interface PortletLocalService

getPortlets

public List<Portlet> getPortlets(long companyId)
                          throws SystemException
Specified by:
getPortlets in interface PortletLocalService
Throws:
SystemException

getPortlets

public List<Portlet> getPortlets(long companyId,
                                 boolean showSystem,
                                 boolean showPortal)
                          throws SystemException
Specified by:
getPortlets in interface PortletLocalService
Throws:
SystemException

getWARDisplay

public PortletCategory getWARDisplay(String servletContextName,
                                     String xml)
                              throws SystemException
Specified by:
getWARDisplay in interface PortletLocalService
Throws:
SystemException

hasPortlet

public boolean hasPortlet(long companyId,
                          String portletId)
                   throws SystemException
Specified by:
hasPortlet in interface PortletLocalService
Throws:
SystemException

initEAR

public void initEAR(javax.servlet.ServletContext servletContext,
                    String[] xmls,
                    PluginPackage pluginPackage)
Specified by:
initEAR in interface PortletLocalService

initWAR

public List<Portlet> initWAR(String servletContextName,
                             javax.servlet.ServletContext servletContext,
                             String[] xmls,
                             PluginPackage pluginPackage)
Specified by:
initWAR in interface PortletLocalService

updatePortlet

public Portlet updatePortlet(long companyId,
                             String portletId,
                             String roles,
                             boolean active)
                      throws SystemException
Specified by:
updatePortlet in interface PortletLocalService
Throws:
SystemException

getWrappedPortletLocalService

public PortletLocalService getWrappedPortletLocalService()

Liferay 6.0.5