Liferay 6.1.2-ce-ga3

com.liferay.portlet.asset.service
Class AssetCategoryPropertyLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetCategoryPropertyLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<AssetCategoryPropertyLocalService>, AssetCategoryPropertyLocalService

public class AssetCategoryPropertyLocalServiceWrapper
extends Object
implements AssetCategoryPropertyLocalService, ServiceWrapper<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 it 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.
 AssetCategoryProperty deleteAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
          Deletes the asset category property from the database.
 AssetCategoryProperty 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)
           
 DynamicQuery dynamicQuery()
           
 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)
          Returns the number of rows that match the dynamic query.
 AssetCategoryProperty fetchAssetCategoryProperty(long categoryPropertyId)
           
 List<AssetCategoryProperty> getAssetCategoryProperties(int start, int end)
          Returns a range of all the asset category properties.
 int getAssetCategoryPropertiesCount()
          Returns the number of asset category properties.
 AssetCategoryProperty getAssetCategoryProperty(long categoryPropertyId)
          Returns the asset category property with the primary key.
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 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)
           
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService()
          Deprecated. Renamed to getWrappedService()
 AssetCategoryPropertyLocalService getWrappedService()
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedAssetCategoryPropertyLocalService(AssetCategoryPropertyLocalService assetCategoryPropertyLocalService)
          Deprecated. Renamed to setWrappedService(com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService)
 void setWrappedService(AssetCategoryPropertyLocalService assetCategoryPropertyLocalService)
           
 AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty)
          Updates the asset category property in the database or adds it if it does not yet exist.
 AssetCategoryProperty updateAssetCategoryProperty(AssetCategoryProperty assetCategoryProperty, boolean merge)
          Updates the asset category property in the database or adds it if it does not yet exist.
 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
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 AssetCategoryProperty 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
Returns:
the asset category property that was removed
Throws:
PortalException - if a asset category property with the primary key could not be found
SystemException - if a system exception occurred

deleteAssetCategoryProperty

public AssetCategoryProperty 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
Returns:
the asset category property that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface AssetCategoryPropertyLocalService

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
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
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (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
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

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

Specified by:
dynamicQueryCount in interface AssetCategoryPropertyLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchAssetCategoryProperty

public AssetCategoryProperty fetchAssetCategoryProperty(long categoryPropertyId)
                                                 throws SystemException
Specified by:
fetchAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Throws:
SystemException

getAssetCategoryProperty

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

Specified by:
getAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
categoryPropertyId - the primary key of the asset category property
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

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Specified by:
getPersistedModel in interface AssetCategoryPropertyLocalService
Throws:
PortalException
SystemException

getAssetCategoryProperties

public List<AssetCategoryProperty> getAssetCategoryProperties(int start,
                                                              int end)
                                                       throws SystemException
Returns 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
end - the upper bound of the range of asset category properties (not inclusive)
Returns:
the range of asset category properties
Throws:
SystemException - if a system exception occurred

getAssetCategoryPropertiesCount

public int getAssetCategoryPropertiesCount()
                                    throws SystemException
Returns 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 or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
assetCategoryProperty - the asset category property
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 or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateAssetCategoryProperty in interface AssetCategoryPropertyLocalService
Parameters:
assetCategoryProperty - the asset category property
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

getBeanIdentifier

public String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Specified by:
getBeanIdentifier in interface AssetCategoryPropertyLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

public void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Specified by:
setBeanIdentifier in interface AssetCategoryPropertyLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

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()
Deprecated. Renamed to getWrappedService()


setWrappedAssetCategoryPropertyLocalService

public void setWrappedAssetCategoryPropertyLocalService(AssetCategoryPropertyLocalService assetCategoryPropertyLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService)


getWrappedService

public AssetCategoryPropertyLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<AssetCategoryPropertyLocalService>

setWrappedService

public void setWrappedService(AssetCategoryPropertyLocalService assetCategoryPropertyLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<AssetCategoryPropertyLocalService>

Liferay 6.1.2-ce-ga3