Liferay 6.2-ce-ga5

com.liferay.portlet.ratings.service
Class RatingsStatsLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.ratings.service.RatingsStatsLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<RatingsStatsLocalService>, RatingsStatsLocalService

@ProviderType
public class RatingsStatsLocalServiceWrapper
extends Object
implements RatingsStatsLocalService, ServiceWrapper<RatingsStatsLocalService>

Provides a wrapper for RatingsStatsLocalService.

See Also:
RatingsStatsLocalService

Constructor Summary
RatingsStatsLocalServiceWrapper(RatingsStatsLocalService ratingsStatsLocalService)
           
 
Method Summary
 RatingsStats addRatingsStats(RatingsStats ratingsStats)
          Adds the ratings stats to the database.
 RatingsStats addStats(long classNameId, long classPK)
           
 RatingsStats createRatingsStats(long statsId)
          Creates a new ratings stats with the primary key.
 RatingsStats deleteRatingsStats(long statsId)
          Deletes the ratings stats with the primary key from the database.
 RatingsStats deleteRatingsStats(RatingsStats ratingsStats)
          Deletes the ratings stats from the database.
 void deleteStats(String className, long classPK)
           
 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.
 long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows that match the dynamic query.
 RatingsStats fetchRatingsStats(long statsId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 RatingsStats getRatingsStats(long statsId)
          Returns the ratings stats with the primary key.
 List<RatingsStats> getRatingsStatses(int start, int end)
          Returns a range of all the ratings statses.
 int getRatingsStatsesCount()
          Returns the number of ratings statses.
 RatingsStats getStats(long statsId)
           
 List<RatingsStats> getStats(String className, List<Long> classPKs)
           
 RatingsStats getStats(String className, long classPK)
           
 RatingsStatsLocalService getWrappedRatingsStatsLocalService()
          Deprecated. As of 6.1.0, replaced by getWrappedService()
 RatingsStatsLocalService getWrappedService()
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedRatingsStatsLocalService(RatingsStatsLocalService ratingsStatsLocalService)
          Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portlet.ratings.service.RatingsStatsLocalService)
 void setWrappedService(RatingsStatsLocalService ratingsStatsLocalService)
           
 RatingsStats updateRatingsStats(RatingsStats ratingsStats)
          Updates the ratings stats in the database or adds it if it does not yet exist.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RatingsStatsLocalServiceWrapper

public RatingsStatsLocalServiceWrapper(RatingsStatsLocalService ratingsStatsLocalService)
Method Detail

addRatingsStats

public RatingsStats addRatingsStats(RatingsStats ratingsStats)
                             throws SystemException
Adds the ratings stats to the database. Also notifies the appropriate model listeners.

Specified by:
addRatingsStats in interface RatingsStatsLocalService
Parameters:
ratingsStats - the ratings stats
Returns:
the ratings stats that was added
Throws:
SystemException - if a system exception occurred

createRatingsStats

public RatingsStats createRatingsStats(long statsId)
Creates a new ratings stats with the primary key. Does not add the ratings stats to the database.

Specified by:
createRatingsStats in interface RatingsStatsLocalService
Parameters:
statsId - the primary key for the new ratings stats
Returns:
the new ratings stats

deleteRatingsStats

public RatingsStats deleteRatingsStats(long statsId)
                                throws PortalException,
                                       SystemException
Deletes the ratings stats with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteRatingsStats in interface RatingsStatsLocalService
Parameters:
statsId - the primary key of the ratings stats
Returns:
the ratings stats that was removed
Throws:
PortalException - if a ratings stats with the primary key could not be found
SystemException - if a system exception occurred

deleteRatingsStats

public RatingsStats deleteRatingsStats(RatingsStats ratingsStats)
                                throws SystemException
Deletes the ratings stats from the database. Also notifies the appropriate model listeners.

Specified by:
deleteRatingsStats in interface RatingsStatsLocalService
Parameters:
ratingsStats - the ratings stats
Returns:
the ratings stats that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

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

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 RatingsStatsLocalService
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from RatingsStatsModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
dynamicQuery in interface RatingsStatsLocalService
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from RatingsStatsModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
dynamicQuery in interface RatingsStatsLocalService
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 RatingsStatsLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

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

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

fetchRatingsStats

public RatingsStats fetchRatingsStats(long statsId)
                               throws SystemException
Specified by:
fetchRatingsStats in interface RatingsStatsLocalService
Throws:
SystemException

getRatingsStats

public RatingsStats getRatingsStats(long statsId)
                             throws PortalException,
                                    SystemException
Returns the ratings stats with the primary key.

Specified by:
getRatingsStats in interface RatingsStatsLocalService
Parameters:
statsId - the primary key of the ratings stats
Returns:
the ratings stats
Throws:
PortalException - if a ratings stats 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 RatingsStatsLocalService
Throws:
PortalException
SystemException

getRatingsStatses

public List<RatingsStats> getRatingsStatses(int start,
                                            int end)
                                     throws SystemException
Returns a range of all the ratings 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from RatingsStatsModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Specified by:
getRatingsStatses in interface RatingsStatsLocalService
Parameters:
start - the lower bound of the range of ratings statses
end - the upper bound of the range of ratings statses (not inclusive)
Returns:
the range of ratings statses
Throws:
SystemException - if a system exception occurred

getRatingsStatsesCount

public int getRatingsStatsesCount()
                           throws SystemException
Returns the number of ratings statses.

Specified by:
getRatingsStatsesCount in interface RatingsStatsLocalService
Returns:
the number of ratings statses
Throws:
SystemException - if a system exception occurred

updateRatingsStats

public RatingsStats updateRatingsStats(RatingsStats ratingsStats)
                                throws SystemException
Updates the ratings stats in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateRatingsStats in interface RatingsStatsLocalService
Parameters:
ratingsStats - the ratings stats
Returns:
the ratings stats 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 RatingsStatsLocalService
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 RatingsStatsLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addStats

public RatingsStats addStats(long classNameId,
                             long classPK)
                      throws SystemException
Specified by:
addStats in interface RatingsStatsLocalService
Throws:
SystemException

deleteStats

public void deleteStats(String className,
                        long classPK)
                 throws SystemException
Specified by:
deleteStats in interface RatingsStatsLocalService
Throws:
SystemException

getStats

public RatingsStats getStats(long statsId)
                      throws PortalException,
                             SystemException
Specified by:
getStats in interface RatingsStatsLocalService
Throws:
PortalException
SystemException

getStats

public List<RatingsStats> getStats(String className,
                                   List<Long> classPKs)
                            throws SystemException
Specified by:
getStats in interface RatingsStatsLocalService
Throws:
SystemException

getStats

public RatingsStats getStats(String className,
                             long classPK)
                      throws SystemException
Specified by:
getStats in interface RatingsStatsLocalService
Throws:
SystemException

getWrappedRatingsStatsLocalService

public RatingsStatsLocalService getWrappedRatingsStatsLocalService()
Deprecated. As of 6.1.0, replaced by getWrappedService()


setWrappedRatingsStatsLocalService

public void setWrappedRatingsStatsLocalService(RatingsStatsLocalService ratingsStatsLocalService)
Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portlet.ratings.service.RatingsStatsLocalService)


getWrappedService

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

setWrappedService

public void setWrappedService(RatingsStatsLocalService ratingsStatsLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<RatingsStatsLocalService>

Liferay 6.2-ce-ga5