@ProviderType
public class AssetCategoryPropertyLocalServiceUtil
extends java.lang.Object
com.liferay.portlet.asset.service.impl.AssetCategoryPropertyLocalServiceImpl and is the
primary 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.AssetCategoryPropertyLocalService,
com.liferay.portlet.asset.service.base.AssetCategoryPropertyLocalServiceBaseImpl,
com.liferay.portlet.asset.service.impl.AssetCategoryPropertyLocalServiceImpl| Constructor and Description |
|---|
AssetCategoryPropertyLocalServiceUtil() |
| Modifier and Type | Method and Description |
|---|---|
static AssetCategoryProperty |
addAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
Adds the asset category property to the database.
|
static AssetCategoryProperty |
addCategoryProperty(long userId,
long categoryId,
java.lang.String key,
java.lang.String value) |
static AssetCategoryProperty |
createAssetCategoryProperty(long categoryPropertyId)
Creates a new asset category property with the primary key.
|
static AssetCategoryProperty |
deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
Deletes the asset category property from the database.
|
static AssetCategoryProperty |
deleteAssetCategoryProperty(long categoryPropertyId)
Deletes the asset category property with the primary key from the database.
|
static void |
deleteCategoryProperties(long entryId) |
static void |
deleteCategoryProperty(AssetCategoryProperty categoryProperty) |
static void |
deleteCategoryProperty(long categoryPropertyId) |
static DynamicQuery |
dynamicQuery() |
static java.util.List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
static java.util.List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
static java.util.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.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows that match the dynamic query.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows that match the dynamic query.
|
static AssetCategoryProperty |
fetchAssetCategoryProperty(long categoryPropertyId) |
static java.util.List<AssetCategoryProperty> |
getAssetCategoryProperties(int start,
int end)
Returns a range of all the asset category properties.
|
static int |
getAssetCategoryPropertiesCount()
Returns the number of asset category properties.
|
static AssetCategoryProperty |
getAssetCategoryProperty(long categoryPropertyId)
Returns the asset category property with the primary key.
|
static java.lang.String |
getBeanIdentifier()
Returns the Spring bean ID for this bean.
|
static java.util.List<AssetCategoryProperty> |
getCategoryProperties() |
static java.util.List<AssetCategoryProperty> |
getCategoryProperties(long entryId) |
static AssetCategoryProperty |
getCategoryProperty(long categoryPropertyId) |
static AssetCategoryProperty |
getCategoryProperty(long categoryId,
java.lang.String key) |
static java.util.List<AssetCategoryProperty> |
getCategoryPropertyValues(long groupId,
java.lang.String key) |
static PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
static AssetCategoryPropertyLocalService |
getService() |
static void |
setBeanIdentifier(java.lang.String beanIdentifier)
Sets the Spring bean ID for this bean.
|
void |
setService(AssetCategoryPropertyLocalService service)
Deprecated.
As of 6.2.0
|
static AssetCategoryProperty |
updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
Updates the asset category property in the database or adds it if it does not yet exist.
|
static AssetCategoryProperty |
updateCategoryProperty(long categoryPropertyId,
java.lang.String key,
java.lang.String value) |
public AssetCategoryPropertyLocalServiceUtil()
public static AssetCategoryProperty addAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty) throws SystemException
assetCategoryProperty - the asset category propertySystemException - if a system exception occurredpublic static AssetCategoryProperty createAssetCategoryProperty(long categoryPropertyId)
categoryPropertyId - the primary key for the new asset category propertypublic static AssetCategoryProperty deleteAssetCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
categoryPropertyId - the primary key of the asset category propertyPortalException - if a asset category property with the primary key could not be foundSystemException - if a system exception occurredpublic static AssetCategoryProperty deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty) throws SystemException
assetCategoryProperty - the asset category propertySystemException - if a system exception occurredpublic static DynamicQuery dynamicQuery()
public static java.util.List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery - the dynamic querySystemException - if a system exception occurredpublic static java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from AssetCategoryPropertyModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)SystemException - if a system exception occurredpublic static java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from AssetCategoryPropertyModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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)SystemException - if a system exception occurredpublic static long dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery - the dynamic querySystemException - if a system exception occurredpublic static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection) throws SystemException
dynamicQuery - the dynamic queryprojection - the projection to apply to the querySystemException - if a system exception occurredpublic static AssetCategoryProperty fetchAssetCategoryProperty(long categoryPropertyId) throws SystemException
SystemExceptionpublic static AssetCategoryProperty getAssetCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
categoryPropertyId - the primary key of the asset category propertyPortalException - if a asset category property with the primary key could not be foundSystemException - if a system exception occurredpublic static PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException, SystemException
PortalExceptionSystemExceptionpublic static java.util.List<AssetCategoryProperty> getAssetCategoryProperties(int start, int end) throws SystemException
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from AssetCategoryPropertyModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of asset category propertiesend - the upper bound of the range of asset category properties (not inclusive)SystemException - if a system exception occurredpublic static int getAssetCategoryPropertiesCount()
throws SystemException
SystemException - if a system exception occurredpublic static AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty) throws SystemException
assetCategoryProperty - the asset category propertySystemException - if a system exception occurredpublic static java.lang.String getBeanIdentifier()
public static void setBeanIdentifier(java.lang.String beanIdentifier)
beanIdentifier - the Spring bean ID for this beanpublic static AssetCategoryProperty addCategoryProperty(long userId, long categoryId, java.lang.String key, java.lang.String value) throws PortalException, SystemException
PortalExceptionSystemExceptionpublic static void deleteCategoryProperties(long entryId)
throws SystemException
SystemExceptionpublic static void deleteCategoryProperty(AssetCategoryProperty categoryProperty) throws SystemException
SystemExceptionpublic static void deleteCategoryProperty(long categoryPropertyId)
throws PortalException,
SystemException
PortalExceptionSystemExceptionpublic static java.util.List<AssetCategoryProperty> getCategoryProperties() throws SystemException
SystemExceptionpublic static java.util.List<AssetCategoryProperty> getCategoryProperties(long entryId) throws SystemException
SystemExceptionpublic static AssetCategoryProperty getCategoryProperty(long categoryPropertyId) throws PortalException, SystemException
PortalExceptionSystemExceptionpublic static AssetCategoryProperty getCategoryProperty(long categoryId, java.lang.String key) throws PortalException, SystemException
PortalExceptionSystemExceptionpublic static java.util.List<AssetCategoryProperty> getCategoryPropertyValues(long groupId, java.lang.String key) throws SystemException
SystemExceptionpublic static AssetCategoryProperty updateCategoryProperty(long categoryPropertyId, java.lang.String key, java.lang.String value) throws PortalException, SystemException
PortalExceptionSystemExceptionpublic static AssetCategoryPropertyLocalService getService()
public void setService(AssetCategoryPropertyLocalService service)