Liferay 6.1.2-ce-ga3

com.liferay.portlet.asset.service
Class AssetTagStatsLocalServiceUtil

java.lang.Object
  extended by com.liferay.portlet.asset.service.AssetTagStatsLocalServiceUtil

public class AssetTagStatsLocalServiceUtil
extends Object

The utility for the asset tag stats local service. This utility wraps AssetTagStatsLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server.

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:
AssetTagStatsLocalService, AssetTagStatsLocalServiceBaseImpl, AssetTagStatsLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
AssetTagStatsLocalServiceUtil()
           
 
Method Summary
static AssetTagStats addAssetTagStats(AssetTagStats assetTagStats)
          Adds the asset tag stats to the database.
static AssetTagStats addTagStats(long tagId, long classNameId)
          Adds an asset tag statistics instance.
static AssetTagStats createAssetTagStats(long tagStatsId)
          Creates a new asset tag stats with the primary key.
static AssetTagStats deleteAssetTagStats(AssetTagStats assetTagStats)
          Deletes the asset tag stats from the database.
static AssetTagStats deleteAssetTagStats(long tagStatsId)
          Deletes the asset tag stats with the primary key from the database.
static void deleteTagStats(AssetTagStats tagStats)
          Deletes the asset tag statistics instance.
static void deleteTagStats(long tagStatsId)
          Deletes the asset tag statistics instance matching the tag statistics ID.
static void deleteTagStatsByClassNameId(long classNameId)
          Deletes all asset tag statistics instances associated with the asset entry matching the class name ID.
static void deleteTagStatsByTagId(long tagId)
          Deletes all asset tag statistics instances associated with the tag.
static DynamicQuery dynamicQuery()
           
static List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
static List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
static 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.
static long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows that match the dynamic query.
static AssetTagStats fetchAssetTagStats(long tagStatsId)
           
static AssetTagStats getAssetTagStats(long tagStatsId)
          Returns the asset tag stats with the primary key.
static List<AssetTagStats> getAssetTagStatses(int start, int end)
          Returns a range of all the asset tag statses.
static int getAssetTagStatsesCount()
          Returns the number of asset tag statses.
static String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
static PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
static AssetTagStatsLocalService getService()
           
static List<AssetTagStats> getTagStats(long classNameId, int start, int end)
          Returns a range of all the asset tag statistics instances associated with the asset entry matching the class name ID.
static AssetTagStats getTagStats(long tagId, long classNameId)
          Returns the asset tag statistics instance with the tag and asset entry matching the class name ID
static void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setService(AssetTagStatsLocalService service)
          Deprecated.  
static AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats)
          Updates the asset tag stats in the database or adds it if it does not yet exist.
static AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats, boolean merge)
          Updates the asset tag stats in the database or adds it if it does not yet exist.
static AssetTagStats updateTagStats(long tagId, long classNameId)
          Updates the asset tag statistics instance.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetTagStatsLocalServiceUtil

public AssetTagStatsLocalServiceUtil()
Method Detail

addAssetTagStats

public static 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
Returns:
the asset tag stats that was added
Throws:
SystemException - if a system exception occurred

createAssetTagStats

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

public static AssetTagStats 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
Returns:
the asset tag stats that was removed
Throws:
PortalException - if a asset tag stats with the primary key could not be found
SystemException - if a system exception occurred

deleteAssetTagStats

public static AssetTagStats 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
Returns:
the asset tag stats that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public static DynamicQuery dynamicQuery()

dynamicQuery

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

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

dynamicQuery

public static 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
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 static 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
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 static long dynamicQueryCount(DynamicQuery dynamicQuery)
                              throws SystemException
Returns the number of rows that match the dynamic query.

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

fetchAssetTagStats

public static AssetTagStats fetchAssetTagStats(long tagStatsId)
                                        throws SystemException
Throws:
SystemException

getAssetTagStats

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

Parameters:
tagStatsId - the primary key of the asset tag stats
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

getPersistedModel

public static PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                        throws PortalException,
                                               SystemException
Throws:
PortalException
SystemException

getAssetTagStatses

public static List<AssetTagStats> getAssetTagStatses(int start,
                                                     int end)
                                              throws SystemException
Returns 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
end - the upper bound of the range of asset tag statses (not inclusive)
Returns:
the range of asset tag statses
Throws:
SystemException - if a system exception occurred

getAssetTagStatsesCount

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

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

updateAssetTagStats

public static AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats)
                                         throws SystemException
Updates the asset tag stats in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

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

updateAssetTagStats

public static AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats,
                                                boolean merge)
                                         throws SystemException
Updates the asset tag stats in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

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

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

addTagStats

public static AssetTagStats addTagStats(long tagId,
                                        long classNameId)
                                 throws SystemException
Adds an asset tag statistics instance.

Parameters:
tagId - the primary key of the tag
classNameId - the asset entry's class name ID
Returns:
the asset tag statistics instance
Throws:
SystemException - if a system exception occurred

deleteTagStats

public static void deleteTagStats(AssetTagStats tagStats)
                           throws SystemException
Deletes the asset tag statistics instance.

Parameters:
tagStats - the asset tag statistics instance
Throws:
SystemException - if a system exception occurred

deleteTagStats

public static void deleteTagStats(long tagStatsId)
                           throws PortalException,
                                  SystemException
Deletes the asset tag statistics instance matching the tag statistics ID.

Parameters:
tagStatsId - the primary key of the asset tag statistics instance
Throws:
PortalException - if the assetTagStats with the primary key could not be found
SystemException - if a system exception occurred

deleteTagStatsByClassNameId

public static void deleteTagStatsByClassNameId(long classNameId)
                                        throws SystemException
Deletes all asset tag statistics instances associated with the asset entry matching the class name ID.

Parameters:
classNameId - the asset entry's class name ID
Throws:
SystemException - if a system exception occurred

deleteTagStatsByTagId

public static void deleteTagStatsByTagId(long tagId)
                                  throws SystemException
Deletes all asset tag statistics instances associated with the tag.

Parameters:
tagId - the primary key of the tag
Throws:
SystemException - if a system exception occurred

getTagStats

public static List<AssetTagStats> getTagStats(long classNameId,
                                              int start,
                                              int end)
                                       throws SystemException
Returns a range of all the asset tag statistics instances associated with the asset entry matching the class name ID.

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:
classNameId - the asset entry's class name ID
start - the lower bound of the range of results
end - the upper bound of the range of results (not inclusive)
Returns:
the range of asset tag statistics associated with the asset entry matching the class name ID
Throws:
SystemException - if a system exception occurred

getTagStats

public static AssetTagStats getTagStats(long tagId,
                                        long classNameId)
                                 throws SystemException
Returns the asset tag statistics instance with the tag and asset entry matching the class name ID

Parameters:
tagId - the primary key of the tag
classNameId - the asset entry's class name ID
Returns:
Returns the asset tag statistics instance with the tag and asset entry matching the class name ID
Throws:
SystemException - if a system exception occurred

updateTagStats

public static AssetTagStats updateTagStats(long tagId,
                                           long classNameId)
                                    throws PortalException,
                                           SystemException
Updates the asset tag statistics instance.

Parameters:
tagId - the primary key of the tag
classNameId - the asset entry's class name ID
Returns:
the updated asset tag statistics instance
Throws:
PortalException - if an asset tag with the tag ID could not be found
SystemException - if a system exception occurred

getService

public static AssetTagStatsLocalService getService()

setService

public void setService(AssetTagStatsLocalService service)
Deprecated. 


Liferay 6.1.2-ce-ga3