Liferay 6.0.5

com.liferay.portlet.asset.service
Class AssetTagStatsLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetTagStatsLocalServiceWrapper
All Implemented Interfaces:
AssetTagStatsLocalService

public class AssetTagStatsLocalServiceWrapper
extends Object
implements AssetTagStatsLocalService

This class is a wrapper for AssetTagStatsLocalService.

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

Constructor Summary
AssetTagStatsLocalServiceWrapper(AssetTagStatsLocalService assetTagStatsLocalService)
           
 
Method Summary
 AssetTagStats addAssetTagStats(AssetTagStats assetTagStats)
          Adds the asset tag stats to the database.
 AssetTagStats addTagStats(long tagId, long classNameId)
           
 AssetTagStats createAssetTagStats(long tagStatsId)
          Creates a new asset tag stats with the primary key.
 void deleteAssetTagStats(AssetTagStats assetTagStats)
          Deletes the asset tag stats from the database.
 void deleteAssetTagStats(long tagStatsId)
          Deletes the asset tag stats with the primary key from the database.
 void deleteTagStatsByClassNameId(long classNameId)
           
 void deleteTagStatsByTagId(long tagId)
           
 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.
 AssetTagStats getAssetTagStats(long tagStatsId)
          Gets the asset tag stats with the primary key.
 List<AssetTagStats> getAssetTagStatses(int start, int end)
          Gets a range of all the asset tag statses.
 int getAssetTagStatsesCount()
          Gets the number of asset tag statses.
 AssetTagStats getTagStats(long tagId, long classNameId)
           
 AssetTagStatsLocalService getWrappedAssetTagStatsLocalService()
           
 AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats)
          Updates the asset tag stats in the database.
 AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats, boolean merge)
          Updates the asset tag stats in the database.
 AssetTagStats updateTagStats(long tagId, long classNameId)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetTagStatsLocalServiceWrapper

public AssetTagStatsLocalServiceWrapper(AssetTagStatsLocalService assetTagStatsLocalService)
Method Detail

addAssetTagStats

public AssetTagStats addAssetTagStats(AssetTagStats assetTagStats)
                               throws SystemException
Adds the asset tag stats to the database. Also notifies the appropriate model listeners.

Specified by:
addAssetTagStats in interface AssetTagStatsLocalService
Parameters:
assetTagStats - the asset tag stats to add
Returns:
the asset tag stats that was added
Throws:
SystemException - if a system exception occurred

createAssetTagStats

public AssetTagStats createAssetTagStats(long tagStatsId)
Creates a new asset tag stats with the primary key. Does not add the asset tag stats to the database.

Specified by:
createAssetTagStats in interface AssetTagStatsLocalService
Parameters:
tagStatsId - the primary key for the new asset tag stats
Returns:
the new asset tag stats

deleteAssetTagStats

public void deleteAssetTagStats(long tagStatsId)
                         throws PortalException,
                                SystemException
Deletes the asset tag stats with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteAssetTagStats in interface AssetTagStatsLocalService
Parameters:
tagStatsId - the primary key of the asset tag stats to delete
Throws:
PortalException - if a asset tag stats with the primary key could not be found
SystemException - if a system exception occurred

deleteAssetTagStats

public void deleteAssetTagStats(AssetTagStats assetTagStats)
                         throws SystemException
Deletes the asset tag stats from the database. Also notifies the appropriate model listeners.

Specified by:
deleteAssetTagStats in interface AssetTagStatsLocalService
Parameters:
assetTagStats - the asset tag stats 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 AssetTagStatsLocalService
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 AssetTagStatsLocalService
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 AssetTagStatsLocalService
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 AssetTagStatsLocalService
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

getAssetTagStats

public AssetTagStats getAssetTagStats(long tagStatsId)
                               throws PortalException,
                                      SystemException
Gets the asset tag stats with the primary key.

Specified by:
getAssetTagStats in interface AssetTagStatsLocalService
Parameters:
tagStatsId - the primary key of the asset tag stats to get
Returns:
the asset tag stats
Throws:
PortalException - if a asset tag stats with the primary key could not be found
SystemException - if a system exception occurred

getAssetTagStatses

public List<AssetTagStats> getAssetTagStatses(int start,
                                              int end)
                                       throws SystemException
Gets a range of all the asset tag statses.

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:
getAssetTagStatses in interface AssetTagStatsLocalService
Parameters:
start - the lower bound of the range of asset tag statses to return
end - the upper bound of the range of asset tag statses to return (not inclusive)
Returns:
the range of asset tag statses
Throws:
SystemException - if a system exception occurred

getAssetTagStatsesCount

public int getAssetTagStatsesCount()
                            throws SystemException
Gets the number of asset tag statses.

Specified by:
getAssetTagStatsesCount in interface AssetTagStatsLocalService
Returns:
the number of asset tag statses
Throws:
SystemException - if a system exception occurred

updateAssetTagStats

public AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats)
                                  throws SystemException
Updates the asset tag stats in the database. Also notifies the appropriate model listeners.

Specified by:
updateAssetTagStats in interface AssetTagStatsLocalService
Parameters:
assetTagStats - the asset tag stats to update
Returns:
the asset tag stats that was updated
Throws:
SystemException - if a system exception occurred

updateAssetTagStats

public AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats,
                                         boolean merge)
                                  throws SystemException
Updates the asset tag stats in the database. Also notifies the appropriate model listeners.

Specified by:
updateAssetTagStats in interface AssetTagStatsLocalService
Parameters:
assetTagStats - the asset tag stats to update
merge - whether to merge the asset tag stats 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 tag stats that was updated
Throws:
SystemException - if a system exception occurred

addTagStats

public AssetTagStats addTagStats(long tagId,
                                 long classNameId)
                          throws SystemException
Specified by:
addTagStats in interface AssetTagStatsLocalService
Throws:
SystemException

deleteTagStatsByClassNameId

public void deleteTagStatsByClassNameId(long classNameId)
                                 throws SystemException
Specified by:
deleteTagStatsByClassNameId in interface AssetTagStatsLocalService
Throws:
SystemException

deleteTagStatsByTagId

public void deleteTagStatsByTagId(long tagId)
                           throws SystemException
Specified by:
deleteTagStatsByTagId in interface AssetTagStatsLocalService
Throws:
SystemException

getTagStats

public AssetTagStats getTagStats(long tagId,
                                 long classNameId)
                          throws SystemException
Specified by:
getTagStats in interface AssetTagStatsLocalService
Throws:
SystemException

updateTagStats

public AssetTagStats updateTagStats(long tagId,
                                    long classNameId)
                             throws PortalException,
                                    SystemException
Specified by:
updateTagStats in interface AssetTagStatsLocalService
Throws:
PortalException
SystemException

getWrappedAssetTagStatsLocalService

public AssetTagStatsLocalService getWrappedAssetTagStatsLocalService()

Liferay 6.0.5