@CTAware @ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface PortletPreferencesLocalService extends BaseLocalService, CTService<PortletPreferences>, PersistedModelLocalService
PortletPreferencesLocalServiceUtil
Modifier and Type | Method and Description |
---|---|
PortletPreferences |
addPortletPreferences(long companyId,
long ownerId,
int ownerType,
long plid,
String portletId,
Portlet portlet,
String defaultPreferences) |
PortletPreferences |
addPortletPreferences(PortletPreferences portletPreferences)
Adds the portlet preferences to the database.
|
PersistedModel |
createPersistedModel(Serializable primaryKeyObj) |
PortletPreferences |
createPortletPreferences(long portletPreferencesId)
Creates a new portlet preferences with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
PortletPreferences |
deletePortletPreferences(long portletPreferencesId)
Deletes the portlet preferences with the primary key from the database.
|
void |
deletePortletPreferences(long ownerId,
int ownerType,
long plid) |
void |
deletePortletPreferences(long ownerId,
int ownerType,
long plid,
String portletId) |
PortletPreferences |
deletePortletPreferences(PortletPreferences portletPreferences)
Deletes the portlet preferences from the database.
|
void |
deletePortletPreferencesByOwnerId(long ownerId) |
void |
deletePortletPreferencesByPlid(long plid) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
int |
dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
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.
|
PortletPreferences |
fetchPortletPreferences(long portletPreferencesId) |
PortletPreferences |
fetchPortletPreferences(long ownerId,
int ownerType,
long plid,
String portletId) |
javax.portlet.PortletPreferences |
fetchPreferences(long companyId,
long ownerId,
int ownerType,
long plid,
String portletId) |
javax.portlet.PortletPreferences |
fetchPreferences(PortletPreferencesIds portletPreferencesIds) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
CTPersistence<PortletPreferences> |
getCTPersistence() |
javax.portlet.PortletPreferences |
getDefaultPreferences(long companyId,
String portletId) |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
Class<PortletPreferences> |
getModelClass() |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
Settings |
getPortletInstanceSettings(long companyId,
long groupId,
String portletId,
PortletInstanceSettingsLocator portletInstanceSettingsLocator,
Settings portalPreferencesSettings) |
List<PortletPreferences> |
getPortletPreferences() |
List<PortletPreferences> |
getPortletPreferences(int ownerType,
long plid,
String portletId) |
PortletPreferences |
getPortletPreferences(long portletPreferencesId)
Returns the portlet preferences with the primary key.
|
List<PortletPreferences> |
getPortletPreferences(long ownerId,
int ownerType,
long plid) |
PortletPreferences |
getPortletPreferences(long ownerId,
int ownerType,
long plid,
String portletId) |
List<PortletPreferences> |
getPortletPreferences(long companyId,
long ownerId,
int ownerType,
String portletId) |
List<PortletPreferences> |
getPortletPreferences(long companyId,
long groupId,
long ownerId,
int ownerType,
String portletId,
boolean privateLayout) |
List<PortletPreferences> |
getPortletPreferences(long plid,
String portletId) |
List<PortletPreferences> |
getPortletPreferencesByOwnerId(long ownerId) |
List<PortletPreferences> |
getPortletPreferencesByPlid(long plid) |
long |
getPortletPreferencesCount(int ownerType,
long plid,
String portletId) |
long |
getPortletPreferencesCount(int ownerType,
String portletId) |
long |
getPortletPreferencesCount(long ownerId,
int ownerType,
long plid,
Portlet portlet,
boolean excludeDefaultPreferences) |
long |
getPortletPreferencesCount(long ownerId,
int ownerType,
String portletId,
boolean excludeDefaultPreferences) |
List<PortletPreferences> |
getPortletPreferenceses(int start,
int end)
Returns a range of all the portlet preferenceses.
|
int |
getPortletPreferencesesCount()
Returns the number of portlet preferenceses.
|
javax.portlet.PortletPreferences |
getPreferences(long companyId,
long ownerId,
int ownerType,
long plid,
String portletId) |
javax.portlet.PortletPreferences |
getPreferences(long companyId,
long ownerId,
int ownerType,
long plid,
String portletId,
String defaultPreferences) |
javax.portlet.PortletPreferences |
getPreferences(PortletPreferencesIds portletPreferencesIds) |
Map<String,javax.portlet.PortletPreferences> |
getStrictPreferences(Layout layout,
List<Portlet> portlets) |
javax.portlet.PortletPreferences |
getStrictPreferences(long companyId,
long ownerId,
int ownerType,
long plid,
String portletId) |
javax.portlet.PortletPreferences |
getStrictPreferences(PortletPreferencesIds portletPreferencesIds) |
PortletPreferences |
updatePortletPreferences(PortletPreferences portletPreferences)
Updates the portlet preferences in the database or adds it if it does not yet exist.
|
PortletPreferences |
updatePreferences(long ownerId,
int ownerType,
long plid,
String portletId,
javax.portlet.PortletPreferences portletPreferences) |
PortletPreferences |
updatePreferences(long ownerId,
int ownerType,
long plid,
String portletId,
String xml) |
<R,E extends Throwable> |
updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<PortletPreferences>,R,E> updateUnsafeFunction) |
getBasePersistence
PortletPreferences addPortletPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId, Portlet portlet, String defaultPreferences)
@Indexable(type=REINDEX) PortletPreferences addPortletPreferences(PortletPreferences portletPreferences)
Important: Inspect PortletPreferencesLocalServiceImpl 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.
portletPreferences
- the portlet preferencesPersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
createPersistedModel
in interface PersistedModelLocalService
PortalException
@Transactional(enabled=false) PortletPreferences createPortletPreferences(long portletPreferencesId)
portletPreferencesId
- the primary key for the new portlet preferencesPersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
PortalException
@Indexable(type=DELETE) PortletPreferences deletePortletPreferences(long portletPreferencesId) throws PortalException
Important: Inspect PortletPreferencesLocalServiceImpl 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.
portletPreferencesId
- the primary key of the portlet preferencesPortalException
- if a portlet preferences with the primary key could not be foundvoid deletePortletPreferences(long ownerId, int ownerType, long plid)
void deletePortletPreferences(long ownerId, int ownerType, long plid, String portletId) throws PortalException
PortalException
@Indexable(type=DELETE) PortletPreferences deletePortletPreferences(PortletPreferences portletPreferences)
Important: Inspect PortletPreferencesLocalServiceImpl 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.
portletPreferences
- the portlet preferencesvoid deletePortletPreferencesByOwnerId(long ownerId)
void deletePortletPreferencesByPlid(long plid)
@Transactional(propagation=SUPPORTS, readOnly=true) <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery
in interface PersistedModelLocalService
@Transactional(propagation=SUPPORTS, readOnly=true) int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQueryCount
in interface PersistedModelLocalService
@Transactional(propagation=SUPPORTS, readOnly=true) DynamicQuery dynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) <T> 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.PortletPreferencesModelImpl
.
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) <T> 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.PortletPreferencesModelImpl
.
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
)@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the query@Transactional(propagation=SUPPORTS, readOnly=true) PortletPreferences fetchPortletPreferences(long portletPreferencesId)
@Transactional(propagation=SUPPORTS, readOnly=true) PortletPreferences fetchPortletPreferences(long ownerId, int ownerType, long plid, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences fetchPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences fetchPreferences(PortletPreferencesIds portletPreferencesIds)
@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(enabled=false) javax.portlet.PortletPreferences getDefaultPreferences(long companyId, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
String getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) Settings getPortletInstanceSettings(long companyId, long groupId, String portletId, PortletInstanceSettingsLocator portletInstanceSettingsLocator, Settings portalPreferencesSettings)
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferences()
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferences(int ownerType, long plid, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) PortletPreferences getPortletPreferences(long portletPreferencesId) throws PortalException
portletPreferencesId
- the primary key of the portlet preferencesPortalException
- if a portlet preferences with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferences(long ownerId, int ownerType, long plid)
@Transactional(propagation=SUPPORTS, readOnly=true) PortletPreferences getPortletPreferences(long ownerId, int ownerType, long plid, String portletId) throws PortalException
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferences(long companyId, long ownerId, int ownerType, String portletId) throws PortalException
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferences(long companyId, long groupId, long ownerId, int ownerType, String portletId, boolean privateLayout)
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferences(long plid, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferencesByOwnerId(long ownerId)
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferencesByPlid(long plid)
@Transactional(propagation=SUPPORTS, readOnly=true) long getPortletPreferencesCount(int ownerType, long plid, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) long getPortletPreferencesCount(int ownerType, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) long getPortletPreferencesCount(long ownerId, int ownerType, long plid, Portlet portlet, boolean excludeDefaultPreferences)
@Transactional(propagation=SUPPORTS, readOnly=true) long getPortletPreferencesCount(long ownerId, int ownerType, String portletId, boolean excludeDefaultPreferences)
@Transactional(propagation=SUPPORTS, readOnly=true) List<PortletPreferences> getPortletPreferenceses(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.PortletPreferencesModelImpl
.
start
- the lower bound of the range of portlet preferencesesend
- the upper bound of the range of portlet preferenceses (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) int getPortletPreferencesesCount()
@Retry(acceptor=SQLStateAcceptor.class, properties=@Property(name="SQLSTATE",value="23")) @Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences getPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId)
@Retry(acceptor=SQLStateAcceptor.class, properties=@Property(name="SQLSTATE",value="23")) @Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences getPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId, String defaultPreferences)
@Retry(acceptor=SQLStateAcceptor.class, properties=@Property(name="SQLSTATE",value="23")) @Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences getPreferences(PortletPreferencesIds portletPreferencesIds)
@Transactional(propagation=SUPPORTS, readOnly=true) Map<String,javax.portlet.PortletPreferences> getStrictPreferences(Layout layout, List<Portlet> portlets)
@Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences getStrictPreferences(long companyId, long ownerId, int ownerType, long plid, String portletId)
@Transactional(propagation=SUPPORTS, readOnly=true) javax.portlet.PortletPreferences getStrictPreferences(PortletPreferencesIds portletPreferencesIds)
@Indexable(type=REINDEX) PortletPreferences updatePortletPreferences(PortletPreferences portletPreferences)
Important: Inspect PortletPreferencesLocalServiceImpl 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.
portletPreferences
- the portlet preferencesPortletPreferences updatePreferences(long ownerId, int ownerType, long plid, String portletId, javax.portlet.PortletPreferences portletPreferences)
PortletPreferences updatePreferences(long ownerId, int ownerType, long plid, String portletId, String xml)
@Transactional(enabled=false) CTPersistence<PortletPreferences> getCTPersistence()
getCTPersistence
in interface CTService<PortletPreferences>
@Transactional(enabled=false) Class<PortletPreferences> getModelClass()
getModelClass
in interface CTService<PortletPreferences>
@Transactional(rollbackFor=java.lang.Throwable.class) <R,E extends Throwable> R updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<PortletPreferences>,R,E> updateUnsafeFunction) throws E extends Throwable
updateWithUnsafeFunction
in interface CTService<PortletPreferences>
E extends Throwable