public class PortletLocalServiceUtil
extends java.lang.Object
com.liferay.portal.service.impl.PortletLocalServiceImpl
and
is an access point for service operations in application layer code running
on the local server. Methods of this service will not have security checks
based on the propagated JAAS credentials because this service can only be
accessed from within the same VM.PortletLocalService
Constructor and Description |
---|
PortletLocalServiceUtil() |
Modifier and Type | Method and Description |
---|---|
static Portlet |
addPortlet(Portlet portlet)
Adds the portlet to the database.
|
static void |
addPortletCategory(long companyId,
java.lang.String categoryName) |
static void |
checkPortlet(Portlet portlet) |
static void |
checkPortlets(long companyId) |
static void |
clearCache() |
static void |
clearPortletsMap() |
static Portlet |
clonePortlet(java.lang.String portletId) |
static PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
static Portlet |
createPortlet(long id)
Creates a new portlet with the primary key.
|
static PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
static Portlet |
deletePortlet(long id)
Deletes the portlet with the primary key from the database.
|
static void |
deletePortlet(long companyId,
java.lang.String portletId,
long plid) |
static Portlet |
deletePortlet(Portlet portlet)
Deletes the portlet from the database.
|
static void |
deletePortlets(long companyId,
java.lang.String[] portletIds,
long plid) |
static void |
deployPortlet(Portlet portlet) |
static Portlet |
deployRemotePortlet(long[] companyIds,
Portlet portlet,
java.lang.String[] categoryNames,
boolean eagerDestroy,
boolean clearCache) |
static Portlet |
deployRemotePortlet(Portlet portlet,
java.lang.String categoryName) |
static Portlet |
deployRemotePortlet(Portlet portlet,
java.lang.String[] categoryNames) |
static Portlet |
deployRemotePortlet(Portlet portlet,
java.lang.String[] categoryNames,
boolean eagerDestroy) |
static void |
destroyPortlet(Portlet portlet) |
static void |
destroyRemotePortlet(Portlet portlet) |
static <T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
static int |
dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
static DynamicQuery |
dynamicQuery() |
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
static <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.
|
static <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.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
static Portlet |
fetchPortlet(long id) |
static Portlet |
fetchPortletById(long companyId,
java.lang.String portletId) |
static ActionableDynamicQuery |
getActionableDynamicQuery() |
static java.util.List<CustomAttributesDisplay> |
getCustomAttributesDisplays() |
static PortletCategory |
getEARDisplay(java.lang.String xml) |
static java.util.List<Portlet> |
getFriendlyURLMapperPortlets() |
static java.util.List<FriendlyURLMapper> |
getFriendlyURLMappers() |
static IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
static java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
static PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
static Portlet |
getPortlet(long id)
Returns the portlet with the primary key.
|
static PortletApp |
getPortletApp(java.lang.String servletContextName) |
static Portlet |
getPortletById(long companyId,
java.lang.String portletId) |
static Portlet |
getPortletById(java.lang.String portletId) |
static Portlet |
getPortletByStrutsPath(long companyId,
java.lang.String strutsPath) |
static java.util.List<Portlet> |
getPortlets() |
static java.util.List<Portlet> |
getPortlets(int start,
int end)
Returns a range of all the portlets.
|
static java.util.List<Portlet> |
getPortlets(long companyId) |
static java.util.List<Portlet> |
getPortlets(long companyId,
boolean showSystem,
boolean showPortal) |
static int |
getPortletsCount()
Returns the number of portlets.
|
static int |
getPortletsCount(long companyId) |
static java.util.List<Portlet> |
getScopablePortlets() |
static PortletLocalService |
getService() |
static PortletCategory |
getWARDisplay(java.lang.String servletContextName,
java.lang.String xml) |
static boolean |
hasPortlet(long companyId,
java.lang.String portletId) |
static void |
initEAR(javax.servlet.ServletContext servletContext,
java.lang.String[] xmls,
PluginPackage pluginPackage) |
static java.util.List<Portlet> |
initWAR(java.lang.String servletContextName,
javax.servlet.ServletContext servletContext,
java.lang.String[] xmls,
PluginPackage pluginPackage) |
static java.util.Map<java.lang.String,Portlet> |
loadGetPortletsMap(long companyId) |
static void |
removeCompanyPortletsPool(long companyId) |
static Portlet |
updatePortlet(long companyId,
java.lang.String portletId,
java.lang.String roles,
boolean active) |
static Portlet |
updatePortlet(Portlet portlet)
Updates the portlet in the database or adds it if it does not yet exist.
|
static void |
visitPortlets(long companyId,
java.util.function.Consumer<Portlet> consumer) |
public static 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.
portlet
- the portletpublic static void addPortletCategory(long companyId, java.lang.String categoryName)
public static void checkPortlet(Portlet portlet) throws PortalException
PortalException
public static void checkPortlets(long companyId) throws PortalException
PortalException
public static void clearCache()
public static void clearPortletsMap()
public static Portlet clonePortlet(java.lang.String portletId)
public static PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
PortalException
public static Portlet createPortlet(long id)
id
- the primary key for the new portletpublic static PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
PortalException
public static 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.
id
- the primary key of the portletPortalException
- if a portlet with the primary key could not be foundpublic static void deletePortlet(long companyId, java.lang.String portletId, long plid) throws PortalException
PortalException
public static 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.
portlet
- the portletpublic static void deletePortlets(long companyId, java.lang.String[] portletIds, long plid) throws PortalException
PortalException
public static void deployPortlet(Portlet portlet) throws java.lang.Exception
java.lang.Exception
public static Portlet deployRemotePortlet(long[] companyIds, Portlet portlet, java.lang.String[] categoryNames, boolean eagerDestroy, boolean clearCache) throws PortalException
PortalException
public static Portlet deployRemotePortlet(Portlet portlet, java.lang.String categoryName) throws PortalException
PortalException
public static Portlet deployRemotePortlet(Portlet portlet, java.lang.String[] categoryNames) throws PortalException
PortalException
public static Portlet deployRemotePortlet(Portlet portlet, java.lang.String[] categoryNames, boolean eagerDestroy) throws PortalException
PortalException
public static void destroyPortlet(Portlet portlet)
public static void destroyRemotePortlet(Portlet portlet)
public static <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
public static int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
public static DynamicQuery dynamicQuery()
public static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic querypublic static <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
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)public static <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
- 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 static long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic querypublic static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic static Portlet fetchPortlet(long id)
public static Portlet fetchPortletById(long companyId, java.lang.String portletId)
public static ActionableDynamicQuery getActionableDynamicQuery()
public static java.util.List<CustomAttributesDisplay> getCustomAttributesDisplays()
public static PortletCategory getEARDisplay(java.lang.String xml)
public static java.util.List<Portlet> getFriendlyURLMapperPortlets()
public static java.util.List<FriendlyURLMapper> getFriendlyURLMappers()
public static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
public static java.lang.String getOSGiServiceIdentifier()
public static PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
PortalException
public static Portlet getPortlet(long id) throws PortalException
id
- the primary key of the portletPortalException
- if a portlet with the primary key could not be foundpublic static PortletApp getPortletApp(java.lang.String servletContextName)
public static Portlet getPortletById(long companyId, java.lang.String portletId)
public static Portlet getPortletById(java.lang.String portletId)
public static Portlet getPortletByStrutsPath(long companyId, java.lang.String strutsPath)
public static java.util.List<Portlet> getPortlets()
public static 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
.
start
- the lower bound of the range of portletsend
- the upper bound of the range of portlets (not inclusive)public static java.util.List<Portlet> getPortlets(long companyId)
public static java.util.List<Portlet> getPortlets(long companyId, boolean showSystem, boolean showPortal)
public static int getPortletsCount()
public static int getPortletsCount(long companyId)
public static java.util.List<Portlet> getScopablePortlets()
public static PortletCategory getWARDisplay(java.lang.String servletContextName, java.lang.String xml)
public static boolean hasPortlet(long companyId, java.lang.String portletId)
public static void initEAR(javax.servlet.ServletContext servletContext, java.lang.String[] xmls, PluginPackage pluginPackage)
public static java.util.List<Portlet> initWAR(java.lang.String servletContextName, javax.servlet.ServletContext servletContext, java.lang.String[] xmls, PluginPackage pluginPackage)
public static java.util.Map<java.lang.String,Portlet> loadGetPortletsMap(long companyId)
public static void removeCompanyPortletsPool(long companyId)
public static Portlet updatePortlet(long companyId, java.lang.String portletId, java.lang.String roles, boolean active)
public static 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.
portlet
- the portletpublic static void visitPortlets(long companyId, java.util.function.Consumer<Portlet> consumer)
public static PortletLocalService getService()