Interface AssetCategoryPropertyService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
AssetCategoryPropertyServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface AssetCategoryPropertyService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for AssetCategoryProperty. Methods of this
service are expected to have security checks based on the propagated JAAS
credentials because this service can be accessed remotely.
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionaddCategoryProperty
(long entryId, String key, String value) void
deleteCategoryProperty
(long categoryPropertyId) getCategoryProperties
(long entryId) getCategoryPropertyValues
(long companyId, String key) Returns the OSGi service identifier.updateCategoryProperty
(long userId, long categoryPropertyId, String key, String value) updateCategoryProperty
(long categoryPropertyId, String key, String value)
-
Method Details
-
addCategoryProperty
AssetCategoryProperty addCategoryProperty(long entryId, String key, String value) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteCategoryProperty
void deleteCategoryProperty(long categoryPropertyId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCategoryProperties
@Transactional(propagation=SUPPORTS, readOnly=true) List<AssetCategoryProperty> getCategoryProperties(long entryId) -
getCategoryPropertyValues
@Transactional(propagation=SUPPORTS, readOnly=true) List<AssetCategoryProperty> getCategoryPropertyValues(long companyId, String key) -
getOSGiServiceIdentifier
String getOSGiServiceIdentifier()Returns the OSGi service identifier.- Returns:
- the OSGi service identifier
-
updateCategoryProperty
AssetCategoryProperty updateCategoryProperty(long userId, long categoryPropertyId, String key, String value) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
updateCategoryProperty
AssetCategoryProperty updateCategoryProperty(long categoryPropertyId, String key, String value) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-