Liferay 6.0.5

com.liferay.portlet.asset.service
Interface AssetCategoryPropertyLocalService

All Known Implementing Classes:
AssetCategoryPropertyLocalServiceBaseImpl, AssetCategoryPropertyLocalServiceImpl, AssetCategoryPropertyLocalServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface AssetCategoryPropertyLocalService

The interface for the asset category property local service.

Never modify or reference this interface directly. Always use AssetCategoryPropertyLocalServiceUtil to access the asset category property local service. Add custom service methods to AssetCategoryPropertyLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a local service. 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.

See Also:
AssetCategoryPropertyLocalServiceUtil, AssetCategoryPropertyLocalServiceBaseImpl, AssetCategoryPropertyLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 AssetCategoryProperty addAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
          Adds the asset category property to the database.
 AssetCategoryProperty addCategoryProperty(long userId, long categoryId, String key, String value)
           
 AssetCategoryProperty createAssetCategoryProperty(long categoryPropertyId)
          Creates a new asset category property with the primary key.
 void deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
          Deletes the asset category property from the database.
 void deleteAssetCategoryProperty(long categoryPropertyId)
          Deletes the asset category property with the primary key from the database.
 void deleteCategoryProperties(long entryId)
           
 void deleteCategoryProperty(AssetCategoryProperty categoryProperty)
           
 void deleteCategoryProperty(long categoryPropertyId)
           
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 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.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
 List<AssetCategoryProperty> getAssetCategoryProperties(int start, int end)
          Gets a range of all the asset category properties.
 int getAssetCategoryPropertiesCount()
          Gets the number of asset category properties.
 AssetCategoryProperty getAssetCategoryProperty(long categoryPropertyId)
          Gets the asset category property with the primary key.
 List<AssetCategoryProperty> getCategoryProperties()
           
 List<AssetCategoryProperty> getCategoryProperties(long entryId)
           
 AssetCategoryProperty getCategoryProperty(long categoryPropertyId)
           
 AssetCategoryProperty getCategoryProperty(long categoryId, String key)
           
 List<AssetCategoryProperty> getCategoryPropertyValues(long groupId, String key)
           
 AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
          Updates the asset category property in the database.
 AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty, boolean merge)
          Updates the asset category property in the database.
 AssetCategoryProperty updateCategoryProperty(long categoryPropertyId, String key, String value)
           
 

Method Detail

addAssetCategoryProperty

AssetCategoryProperty addAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
                                               throws SystemException
Adds the asset category property to the database. Also notifies the appropriate model listeners.

Parameters:
assetCategoryProperty - the asset category property to add
Returns:
the asset category property that was added
Throws:
SystemException - if a system exception occurred

createAssetCategoryProperty

AssetCategoryProperty createAssetCategoryProperty(long categoryPropertyId)
Creates a new asset category property with the primary key. Does not add the asset category property to the database.

Parameters:
categoryPropertyId - the primary key for the new asset category property
Returns:
the new asset category property

deleteAssetCategoryProperty

void deleteAssetCategoryProperty(long categoryPropertyId)
                                 throws PortalException,
                                        SystemException
Deletes the asset category property with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
categoryPropertyId - the primary key of the asset category property to delete
Throws:
PortalException - if a asset category property with the primary key could not be found
SystemException - if a system exception occurred

deleteAssetCategoryProperty

void deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
                                 throws SystemException
Deletes the asset category property from the database. Also notifies the appropriate model listeners.

Parameters:
assetCategoryProperty - the asset category property to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery,
                  int start,
                  int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

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.

Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery,
                  int start,
                  int end,
                  OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

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.

Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getAssetCategoryProperty

@Transactional(propagation=SUPPORTS,
               readOnly=true)
AssetCategoryProperty getAssetCategoryProperty(long categoryPropertyId)
                                               throws PortalException,
                                                      SystemException
Gets the asset category property with the primary key.

Parameters:
categoryPropertyId - the primary key of the asset category property to get
Returns:
the asset category property
Throws:
PortalException - if a asset category property with the primary key could not be found
SystemException - if a system exception occurred

getAssetCategoryProperties

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<AssetCategoryProperty> getAssetCategoryProperties(int start,
                                                                                                int end)
                                                       throws SystemException
Gets a range of all the asset category properties.

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.

Parameters:
start - the lower bound of the range of asset category properties to return
end - the upper bound of the range of asset category properties to return (not inclusive)
Returns:
the range of asset category properties
Throws:
SystemException - if a system exception occurred

getAssetCategoryPropertiesCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getAssetCategoryPropertiesCount()
                                    throws SystemException
Gets the number of asset category properties.

Returns:
the number of asset category properties
Throws:
SystemException - if a system exception occurred

updateAssetCategoryProperty

AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
                                                  throws SystemException
Updates the asset category property in the database. Also notifies the appropriate model listeners.

Parameters:
assetCategoryProperty - the asset category property to update
Returns:
the asset category property that was updated
Throws:
SystemException - if a system exception occurred

updateAssetCategoryProperty

AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty,
                                                  boolean merge)
                                                  throws SystemException
Updates the asset category property in the database. Also notifies the appropriate model listeners.

Parameters:
assetCategoryProperty - the asset category property to update
merge - whether to merge the asset category property with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the asset category property that was updated
Throws:
SystemException - if a system exception occurred

addCategoryProperty

AssetCategoryProperty addCategoryProperty(long userId,
                                          long categoryId,
                                          String key,
                                          String value)
                                          throws PortalException,
                                                 SystemException
Throws:
PortalException
SystemException

deleteCategoryProperties

void deleteCategoryProperties(long entryId)
                              throws SystemException
Throws:
SystemException

deleteCategoryProperty

void deleteCategoryProperty(AssetCategoryProperty categoryProperty)
                            throws SystemException
Throws:
SystemException

deleteCategoryProperty

void deleteCategoryProperty(long categoryPropertyId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

getCategoryProperties

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<AssetCategoryProperty> getCategoryProperties()
                                                  throws SystemException
Throws:
SystemException

getCategoryProperties

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<AssetCategoryProperty> getCategoryProperties(long entryId)
                                                  throws SystemException
Throws:
SystemException

getCategoryProperty

@Transactional(propagation=SUPPORTS,
               readOnly=true)
AssetCategoryProperty getCategoryProperty(long categoryPropertyId)
                                          throws PortalException,
                                                 SystemException
Throws:
PortalException
SystemException

getCategoryProperty

@Transactional(propagation=SUPPORTS,
               readOnly=true)
AssetCategoryProperty getCategoryProperty(long categoryId,
                                                                                   String key)
                                          throws PortalException,
                                                 SystemException
Throws:
PortalException
SystemException

getCategoryPropertyValues

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<AssetCategoryProperty> getCategoryPropertyValues(long groupId,
                                                                                               String key)
                                                      throws SystemException
Throws:
SystemException

updateCategoryProperty

AssetCategoryProperty updateCategoryProperty(long categoryPropertyId,
                                             String key,
                                             String value)
                                             throws PortalException,
                                                    SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5