public class PortletLocalServiceWrapper extends java.lang.Object implements PortletLocalService, ServiceWrapper<PortletLocalService>
PortletLocalService
.PortletLocalService
Constructor and Description |
---|
PortletLocalServiceWrapper() |
PortletLocalServiceWrapper(PortletLocalService portletLocalService) |
Modifier and Type | Method and Description |
---|---|
Portlet |
addPortlet(Portlet portlet)
Adds the portlet to the database.
|
void |
addPortletCategory(long companyId,
java.lang.String categoryName) |
void |
checkPortlet(Portlet portlet) |
void |
checkPortlets(long companyId) |
void |
clearCache() |
void |
clearPortletsMap() |
Portlet |
clonePortlet(java.lang.String portletId) |
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
Portlet |
createPortlet(long id)
Creates a new portlet with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
Portlet |
deletePortlet(long id)
Deletes the portlet with the primary key from the database.
|
void |
deletePortlet(long companyId,
java.lang.String portletId,
long plid) |
Portlet |
deletePortlet(Portlet portlet)
Deletes the portlet from the database.
|
void |
deletePortlets(long companyId,
java.lang.String[] portletIds,
long plid) |
void |
deployPortlet(Portlet portlet) |
Portlet |
deployRemotePortlet(long[] companyIds,
Portlet portlet,
java.lang.String[] categoryNames,
boolean eagerDestroy,
boolean clearCache) |
Portlet |
deployRemotePortlet(Portlet portlet,
java.lang.String categoryName) |
Portlet |
deployRemotePortlet(Portlet portlet,
java.lang.String[] categoryNames) |
Portlet |
deployRemotePortlet(Portlet portlet,
java.lang.String[] categoryNames,
boolean eagerDestroy) |
void |
destroyPortlet(Portlet portlet) |
void |
destroyRemotePortlet(Portlet portlet) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
int |
dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> java.util.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> java.util.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.
|
Portlet |
fetchPortlet(long id) |
Portlet |
fetchPortletById(long companyId,
java.lang.String portletId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
BasePersistence<?> |
getBasePersistence() |
java.util.List<CustomAttributesDisplay> |
getCustomAttributesDisplays() |
PortletCategory |
getEARDisplay(java.lang.String xml) |
java.util.List<Portlet> |
getFriendlyURLMapperPortlets() |
java.util.List<FriendlyURLMapper> |
getFriendlyURLMappers() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
Portlet |
getPortlet(long id)
Returns the portlet with the primary key.
|
PortletApp |
getPortletApp(java.lang.String servletContextName) |
Portlet |
getPortletById(long companyId,
java.lang.String portletId) |
Portlet |
getPortletById(java.lang.String portletId) |
Portlet |
getPortletByStrutsPath(long companyId,
java.lang.String strutsPath) |
java.util.List<Portlet> |
getPortlets() |
java.util.List<Portlet> |
getPortlets(int start,
int end)
Returns a range of all the portlets.
|
java.util.List<Portlet> |
getPortlets(long companyId) |
java.util.List<Portlet> |
getPortlets(long companyId,
boolean showSystem,
boolean showPortal) |
int |
getPortletsCount()
Returns the number of portlets.
|
int |
getPortletsCount(long companyId) |
java.util.List<Portlet> |
getScopablePortlets() |
PortletCategory |
getWARDisplay(java.lang.String servletContextName,
java.lang.String xml) |
PortletLocalService |
getWrappedService() |
boolean |
hasPortlet(long companyId,
java.lang.String portletId) |
void |
initEAR(javax.servlet.ServletContext servletContext,
java.lang.String[] xmls,
PluginPackage pluginPackage) |
java.util.List<Portlet> |
initWAR(java.lang.String servletContextName,
javax.servlet.ServletContext servletContext,
java.lang.String[] xmls,
PluginPackage pluginPackage) |
java.util.Map<java.lang.String,Portlet> |
loadGetPortletsMap(long companyId) |
void |
removeCompanyPortletsPool(long companyId) |
void |
setWrappedService(PortletLocalService portletLocalService) |
Portlet |
updatePortlet(long companyId,
java.lang.String portletId,
java.lang.String roles,
boolean active) |
Portlet |
updatePortlet(Portlet portlet)
Updates the portlet in the database or adds it if it does not yet exist.
|
void |
visitPortlets(long companyId,
java.util.function.Consumer<Portlet> consumer) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
fetchPersistedModel
public PortletLocalServiceWrapper()
public PortletLocalServiceWrapper(PortletLocalService portletLocalService)
public Portlet addPortlet(Portlet portlet)
Important: Inspect PortletLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
addPortlet
in interface PortletLocalService
portlet
- the portletpublic void addPortletCategory(long companyId, java.lang.String categoryName)
addPortletCategory
in interface PortletLocalService
public void checkPortlet(Portlet portlet) throws PortalException
checkPortlet
in interface PortletLocalService
PortalException
public void checkPortlets(long companyId) throws PortalException
checkPortlets
in interface PortletLocalService
PortalException
public void clearCache()
clearCache
in interface PortletLocalService
public void clearPortletsMap()
clearPortletsMap
in interface PortletLocalService
public Portlet clonePortlet(java.lang.String portletId)
clonePortlet
in interface PortletLocalService
public PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel
in interface PersistedModelLocalService
createPersistedModel
in interface PortletLocalService
PortalException
public Portlet createPortlet(long id)
createPortlet
in interface PortletLocalService
id
- the primary key for the new portletpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
deletePersistedModel
in interface PortletLocalService
PortalException
public Portlet deletePortlet(long id) throws PortalException
Important: Inspect PortletLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deletePortlet
in interface PortletLocalService
id
- the primary key of the portletPortalException
- if a portlet with the primary key could not be foundpublic void deletePortlet(long companyId, java.lang.String portletId, long plid) throws PortalException
deletePortlet
in interface PortletLocalService
PortalException
public Portlet deletePortlet(Portlet portlet)
Important: Inspect PortletLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deletePortlet
in interface PortletLocalService
portlet
- the portletpublic void deletePortlets(long companyId, java.lang.String[] portletIds, long plid) throws PortalException
deletePortlets
in interface PortletLocalService
PortalException
public void deployPortlet(Portlet portlet) throws java.lang.Exception
deployPortlet
in interface PortletLocalService
java.lang.Exception
public Portlet deployRemotePortlet(long[] companyIds, Portlet portlet, java.lang.String[] categoryNames, boolean eagerDestroy, boolean clearCache) throws PortalException
deployRemotePortlet
in interface PortletLocalService
PortalException
public Portlet deployRemotePortlet(Portlet portlet, java.lang.String categoryName) throws PortalException
deployRemotePortlet
in interface PortletLocalService
PortalException
public Portlet deployRemotePortlet(Portlet portlet, java.lang.String[] categoryNames) throws PortalException
deployRemotePortlet
in interface PortletLocalService
PortalException
public Portlet deployRemotePortlet(Portlet portlet, java.lang.String[] categoryNames, boolean eagerDestroy) throws PortalException
deployRemotePortlet
in interface PortletLocalService
PortalException
public void destroyPortlet(Portlet portlet)
destroyPortlet
in interface PortletLocalService
public void destroyRemotePortlet(Portlet portlet)
destroyRemotePortlet
in interface PortletLocalService
public <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery
in interface PersistedModelLocalService
dslQuery
in interface PortletLocalService
public int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQueryCount
in interface PersistedModelLocalService
dslQueryCount
in interface PortletLocalService
public DynamicQuery dynamicQuery()
dynamicQuery
in interface PortletLocalService
public <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface PortletLocalService
dynamicQuery
- the dynamic querypublic <T> java.util.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.PortletModelImpl
.
dynamicQuery
in interface PortletLocalService
dynamicQuery
- 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> java.util.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.PortletModelImpl
.
dynamicQuery
in interface PortletLocalService
dynamicQuery
- 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 PortletLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface PortletLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic Portlet fetchPortlet(long id)
fetchPortlet
in interface PortletLocalService
public Portlet fetchPortletById(long companyId, java.lang.String portletId)
fetchPortletById
in interface PortletLocalService
public ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface PortletLocalService
public java.util.List<CustomAttributesDisplay> getCustomAttributesDisplays()
getCustomAttributesDisplays
in interface PortletLocalService
public PortletCategory getEARDisplay(java.lang.String xml)
getEARDisplay
in interface PortletLocalService
public java.util.List<Portlet> getFriendlyURLMapperPortlets()
getFriendlyURLMapperPortlets
in interface PortletLocalService
public java.util.List<FriendlyURLMapper> getFriendlyURLMappers()
getFriendlyURLMappers
in interface PortletLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface PortletLocalService
public java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface PortletLocalService
public PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
getPersistedModel
in interface PortletLocalService
PortalException
public Portlet getPortlet(long id) throws PortalException
getPortlet
in interface PortletLocalService
id
- the primary key of the portletPortalException
- if a portlet with the primary key could not be foundpublic PortletApp getPortletApp(java.lang.String servletContextName)
getPortletApp
in interface PortletLocalService
public Portlet getPortletById(long companyId, java.lang.String portletId)
getPortletById
in interface PortletLocalService
public Portlet getPortletById(java.lang.String portletId)
getPortletById
in interface PortletLocalService
public Portlet getPortletByStrutsPath(long companyId, java.lang.String strutsPath)
getPortletByStrutsPath
in interface PortletLocalService
public java.util.List<Portlet> getPortlets()
getPortlets
in interface PortletLocalService
public java.util.List<Portlet> getPortlets(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.PortletModelImpl
.
getPortlets
in interface PortletLocalService
start
- the lower bound of the range of portletsend
- the upper bound of the range of portlets (not inclusive)public java.util.List<Portlet> getPortlets(long companyId)
getPortlets
in interface PortletLocalService
public java.util.List<Portlet> getPortlets(long companyId, boolean showSystem, boolean showPortal)
getPortlets
in interface PortletLocalService
public int getPortletsCount()
getPortletsCount
in interface PortletLocalService
public int getPortletsCount(long companyId)
getPortletsCount
in interface PortletLocalService
public java.util.List<Portlet> getScopablePortlets()
getScopablePortlets
in interface PortletLocalService
public PortletCategory getWARDisplay(java.lang.String servletContextName, java.lang.String xml)
getWARDisplay
in interface PortletLocalService
public boolean hasPortlet(long companyId, java.lang.String portletId)
hasPortlet
in interface PortletLocalService
public void initEAR(javax.servlet.ServletContext servletContext, java.lang.String[] xmls, PluginPackage pluginPackage)
initEAR
in interface PortletLocalService
public java.util.List<Portlet> initWAR(java.lang.String servletContextName, javax.servlet.ServletContext servletContext, java.lang.String[] xmls, PluginPackage pluginPackage)
initWAR
in interface PortletLocalService
public java.util.Map<java.lang.String,Portlet> loadGetPortletsMap(long companyId)
loadGetPortletsMap
in interface PortletLocalService
public void removeCompanyPortletsPool(long companyId)
removeCompanyPortletsPool
in interface PortletLocalService
public Portlet updatePortlet(long companyId, java.lang.String portletId, java.lang.String roles, boolean active)
updatePortlet
in interface PortletLocalService
public Portlet updatePortlet(Portlet portlet)
Important: Inspect PortletLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
updatePortlet
in interface PortletLocalService
portlet
- the portletpublic void visitPortlets(long companyId, java.util.function.Consumer<Portlet> consumer)
visitPortlets
in interface PortletLocalService
public BasePersistence<?> getBasePersistence()
getBasePersistence
in interface PersistedModelLocalService
public PortletLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<PortletLocalService>
public void setWrappedService(PortletLocalService portletLocalService)
setWrappedService
in interface ServiceWrapper<PortletLocalService>