Liferay 6.0.5

com.liferay.portlet.asset.service
Interface AssetTagStatsLocalService

All Known Implementing Classes:
AssetTagStatsLocalServiceBaseImpl, AssetTagStatsLocalServiceImpl, AssetTagStatsLocalServiceWrapper

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

The interface for the asset tag stats local service.

Never modify or reference this interface directly. Always use AssetTagStatsLocalServiceUtil to access the asset tag stats local service. Add custom service methods to AssetTagStatsLocalServiceImpl 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:
AssetTagStatsLocalServiceUtil, AssetTagStatsLocalServiceBaseImpl, AssetTagStatsLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

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)
           
 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)
           
 

Method Detail

addAssetTagStats

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

Parameters:
assetTagStats - the asset tag stats to add
Returns:
the asset tag stats that was added
Throws:
SystemException - if a system exception occurred

createAssetTagStats

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

Parameters:
tagStatsId - the primary key for the new asset tag stats
Returns:
the new asset tag stats

deleteAssetTagStats

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.

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

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

Parameters:
assetTagStats - the asset tag stats 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

getAssetTagStats

@Transactional(propagation=SUPPORTS,
               readOnly=true)
AssetTagStats getAssetTagStats(long tagStatsId)
                               throws PortalException,
                                      SystemException
Gets the asset tag stats with the primary key.

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

@Transactional(propagation=SUPPORTS,
               readOnly=true)
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.

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

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getAssetTagStatsesCount()
                            throws SystemException
Gets the number of asset tag statses.

Returns:
the number of asset tag statses
Throws:
SystemException - if a system exception occurred

updateAssetTagStats

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

Parameters:
assetTagStats - the asset tag stats to update
Returns:
the asset tag stats that was updated
Throws:
SystemException - if a system exception occurred

updateAssetTagStats

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

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

AssetTagStats addTagStats(long tagId,
                          long classNameId)
                          throws SystemException
Throws:
SystemException

deleteTagStatsByClassNameId

void deleteTagStatsByClassNameId(long classNameId)
                                 throws SystemException
Throws:
SystemException

deleteTagStatsByTagId

void deleteTagStatsByTagId(long tagId)
                           throws SystemException
Throws:
SystemException

getTagStats

@Transactional(propagation=SUPPORTS,
               readOnly=true)
AssetTagStats getTagStats(long tagId,
                                                                   long classNameId)
                          throws SystemException
Throws:
SystemException

updateTagStats

AssetTagStats updateTagStats(long tagId,
                             long classNameId)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5