Liferay 6.0.5

com.liferay.portlet.asset.service
Class AssetCategoryPropertyLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetCategoryPropertyLocalServiceWrapper
All Implemented Interfaces:
AssetCategoryPropertyLocalService

public class AssetCategoryPropertyLocalServiceWrapper
extends Object
implements AssetCategoryPropertyLocalService

This class is a wrapper for AssetCategoryPropertyLocalService.

See Also:
AssetCategoryPropertyLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
AssetCategoryPropertyLocalServiceWrapper(AssetCategoryPropertyLocalService assetCategoryPropertyLocalService)
           
 
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)
           
 AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService()
           
 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)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetCategoryPropertyLocalServiceWrapper

public AssetCategoryPropertyLocalServiceWrapper(AssetCategoryPropertyLocalService assetCategoryPropertyLocalService)
Method Detail

addAssetCategoryProperty

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

Specified by:
addAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
assetCategoryProperty - the asset category property to add
Returns:
the asset category property that was added
Throws:
SystemException - if a system exception occurred

createAssetCategoryProperty

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

Specified by:
createAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
categoryPropertyId - the primary key for the new asset category property
Returns:
the new asset category property

deleteAssetCategoryProperty

public 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.

Specified by:
deleteAssetCategoryProperty in interface AssetCategoryPropertyLocalService
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

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

Specified by:
deleteAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
assetCategoryProperty - the asset category property to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

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

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

dynamicQuery

public 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.

Specified by:
dynamicQuery in interface AssetCategoryPropertyLocalService
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

public 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.

Specified by:
dynamicQuery in interface AssetCategoryPropertyLocalService
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

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

Specified by:
dynamicQueryCount in interface AssetCategoryPropertyLocalService
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

public AssetCategoryProperty getAssetCategoryProperty(long categoryPropertyId)
                                               throws PortalException,
                                                      SystemException
Gets the asset category property with the primary key.

Specified by:
getAssetCategoryProperty in interface AssetCategoryPropertyLocalService
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

public 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.

Specified by:
getAssetCategoryProperties in interface AssetCategoryPropertyLocalService
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

public int getAssetCategoryPropertiesCount()
                                    throws SystemException
Gets the number of asset category properties.

Specified by:
getAssetCategoryPropertiesCount in interface AssetCategoryPropertyLocalService
Returns:
the number of asset category properties
Throws:
SystemException - if a system exception occurred

updateAssetCategoryProperty

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

Specified by:
updateAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
assetCategoryProperty - the asset category property to update
Returns:
the asset category property that was updated
Throws:
SystemException - if a system exception occurred

updateAssetCategoryProperty

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

Specified by:
updateAssetCategoryProperty in interface AssetCategoryPropertyLocalService
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

public AssetCategoryProperty addCategoryProperty(long userId,
                                                 long categoryId,
                                                 String key,
                                                 String value)
                                          throws PortalException,
                                                 SystemException
Specified by:
addCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
PortalException
SystemException

deleteCategoryProperties

public void deleteCategoryProperties(long entryId)
                              throws SystemException
Specified by:
deleteCategoryProperties in interface AssetCategoryPropertyLocalService
Throws:
SystemException

deleteCategoryProperty

public void deleteCategoryProperty(AssetCategoryProperty categoryProperty)
                            throws SystemException
Specified by:
deleteCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
SystemException

deleteCategoryProperty

public void deleteCategoryProperty(long categoryPropertyId)
                            throws PortalException,
                                   SystemException
Specified by:
deleteCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
PortalException
SystemException

getCategoryProperties

public List<AssetCategoryProperty> getCategoryProperties()
                                                  throws SystemException
Specified by:
getCategoryProperties in interface AssetCategoryPropertyLocalService
Throws:
SystemException

getCategoryProperties

public List<AssetCategoryProperty> getCategoryProperties(long entryId)
                                                  throws SystemException
Specified by:
getCategoryProperties in interface AssetCategoryPropertyLocalService
Throws:
SystemException

getCategoryProperty

public AssetCategoryProperty getCategoryProperty(long categoryPropertyId)
                                          throws PortalException,
                                                 SystemException
Specified by:
getCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
PortalException
SystemException

getCategoryProperty

public AssetCategoryProperty getCategoryProperty(long categoryId,
                                                 String key)
                                          throws PortalException,
                                                 SystemException
Specified by:
getCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
PortalException
SystemException

getCategoryPropertyValues

public List<AssetCategoryProperty> getCategoryPropertyValues(long groupId,
                                                             String key)
                                                      throws SystemException
Specified by:
getCategoryPropertyValues in interface AssetCategoryPropertyLocalService
Throws:
SystemException

updateCategoryProperty

public AssetCategoryProperty updateCategoryProperty(long categoryPropertyId,
                                                    String key,
                                                    String value)
                                             throws PortalException,
                                                    SystemException
Specified by:
updateCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
PortalException
SystemException

getWrappedAssetCategoryPropertyLocalService

public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService()

Liferay 6.0.5