@ProviderType public class MBStatsUserLocalServiceWrapper extends Object implements MBStatsUserLocalService, ServiceWrapper<MBStatsUserLocalService>
MBStatsUserLocalService
.MBStatsUserLocalService
Constructor and Description |
---|
MBStatsUserLocalServiceWrapper(MBStatsUserLocalService mbStatsUserLocalService) |
Modifier and Type | Method and Description |
---|---|
MBStatsUser |
addMBStatsUser(MBStatsUser mbStatsUser)
Adds the message boards stats user to the database.
|
MBStatsUser |
addStatsUser(long groupId,
long userId) |
MBStatsUser |
createMBStatsUser(long statsUserId)
Creates a new message boards stats user with the primary key.
|
MBStatsUser |
deleteMBStatsUser(long statsUserId)
Deletes the message boards stats user with the primary key from the database.
|
MBStatsUser |
deleteMBStatsUser(MBStatsUser mbStatsUser)
Deletes the message boards stats user from the database.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
void |
deleteStatsUser(long statsUserId) |
void |
deleteStatsUser(MBStatsUser statsUser) |
void |
deleteStatsUsersByGroupId(long groupId) |
void |
deleteStatsUsersByUserId(long userId) |
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> 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 matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
MBStatsUser |
fetchMBStatsUser(long statsUserId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
Date |
getLastPostDateByUserId(long groupId,
long userId) |
MBStatsUser |
getMBStatsUser(long statsUserId)
Returns the message boards stats user with the primary key.
|
List<MBStatsUser> |
getMBStatsUsers(int start,
int end)
Returns a range of all the message boards stats users.
|
int |
getMBStatsUsersCount()
Returns the number of message boards stats users.
|
long |
getMessageCountByGroupId(long groupId) |
long |
getMessageCountByUserId(long userId) |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
MBStatsUser |
getStatsUser(long groupId,
long userId) |
List<MBStatsUser> |
getStatsUsersByGroupId(long groupId,
int start,
int end) |
int |
getStatsUsersByGroupIdCount(long groupId) |
List<MBStatsUser> |
getStatsUsersByUserId(long userId) |
MBStatsUserLocalService |
getWrappedService() |
void |
setWrappedService(MBStatsUserLocalService mbStatsUserLocalService) |
MBStatsUser |
updateMBStatsUser(MBStatsUser mbStatsUser)
Updates the message boards stats user in the database or adds it if it does not yet exist.
|
MBStatsUser |
updateStatsUser(long groupId,
long userId) |
MBStatsUser |
updateStatsUser(long groupId,
long userId,
Date lastPostDate) |
MBStatsUser |
updateStatsUser(long groupId,
long userId,
int messageCount,
Date lastPostDate) |
public MBStatsUserLocalServiceWrapper(MBStatsUserLocalService mbStatsUserLocalService)
public MBStatsUser addMBStatsUser(MBStatsUser mbStatsUser)
addMBStatsUser
in interface MBStatsUserLocalService
mbStatsUser
- the message boards stats userpublic MBStatsUser addStatsUser(long groupId, long userId)
addStatsUser
in interface MBStatsUserLocalService
public MBStatsUser createMBStatsUser(long statsUserId)
createMBStatsUser
in interface MBStatsUserLocalService
statsUserId
- the primary key for the new message boards stats userpublic MBStatsUser deleteMBStatsUser(long statsUserId) throws PortalException
deleteMBStatsUser
in interface MBStatsUserLocalService
statsUserId
- the primary key of the message boards stats userPortalException
- if a message boards stats user with the primary key could not be foundpublic MBStatsUser deleteMBStatsUser(MBStatsUser mbStatsUser)
deleteMBStatsUser
in interface MBStatsUserLocalService
mbStatsUser
- the message boards stats userpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface MBStatsUserLocalService
deletePersistedModel
in interface PersistedModelLocalService
PortalException
public void deleteStatsUser(long statsUserId) throws PortalException
deleteStatsUser
in interface MBStatsUserLocalService
PortalException
public void deleteStatsUser(MBStatsUser statsUser)
deleteStatsUser
in interface MBStatsUserLocalService
public void deleteStatsUsersByGroupId(long groupId)
deleteStatsUsersByGroupId
in interface MBStatsUserLocalService
public void deleteStatsUsersByUserId(long userId)
deleteStatsUsersByUserId
in interface MBStatsUserLocalService
public DynamicQuery dynamicQuery()
dynamicQuery
in interface MBStatsUserLocalService
public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface MBStatsUserLocalService
dynamicQuery
- the dynamic querypublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
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 MBStatsUserModelImpl
. 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.
dynamicQuery
in interface MBStatsUserLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
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 MBStatsUserModelImpl
. 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.
dynamicQuery
in interface MBStatsUserLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount
in interface MBStatsUserLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface MBStatsUserLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic MBStatsUser fetchMBStatsUser(long statsUserId)
fetchMBStatsUser
in interface MBStatsUserLocalService
public ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface MBStatsUserLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface MBStatsUserLocalService
public Date getLastPostDateByUserId(long groupId, long userId)
getLastPostDateByUserId
in interface MBStatsUserLocalService
public MBStatsUser getMBStatsUser(long statsUserId) throws PortalException
getMBStatsUser
in interface MBStatsUserLocalService
statsUserId
- the primary key of the message boards stats userPortalException
- if a message boards stats user with the primary key could not be foundpublic List<MBStatsUser> getMBStatsUsers(int start, int end)
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 MBStatsUserModelImpl
. 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.
getMBStatsUsers
in interface MBStatsUserLocalService
start
- the lower bound of the range of message boards stats usersend
- the upper bound of the range of message boards stats users (not inclusive)public int getMBStatsUsersCount()
getMBStatsUsersCount
in interface MBStatsUserLocalService
public long getMessageCountByGroupId(long groupId)
getMessageCountByGroupId
in interface MBStatsUserLocalService
public long getMessageCountByUserId(long userId)
getMessageCountByUserId
in interface MBStatsUserLocalService
public String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface MBStatsUserLocalService
public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface MBStatsUserLocalService
getPersistedModel
in interface PersistedModelLocalService
PortalException
public MBStatsUser getStatsUser(long groupId, long userId)
getStatsUser
in interface MBStatsUserLocalService
public List<MBStatsUser> getStatsUsersByGroupId(long groupId, int start, int end) throws PortalException
getStatsUsersByGroupId
in interface MBStatsUserLocalService
PortalException
public int getStatsUsersByGroupIdCount(long groupId) throws PortalException
getStatsUsersByGroupIdCount
in interface MBStatsUserLocalService
PortalException
public List<MBStatsUser> getStatsUsersByUserId(long userId)
getStatsUsersByUserId
in interface MBStatsUserLocalService
public MBStatsUser updateMBStatsUser(MBStatsUser mbStatsUser)
updateMBStatsUser
in interface MBStatsUserLocalService
mbStatsUser
- the message boards stats userpublic MBStatsUser updateStatsUser(long groupId, long userId)
updateStatsUser
in interface MBStatsUserLocalService
public MBStatsUser updateStatsUser(long groupId, long userId, Date lastPostDate)
updateStatsUser
in interface MBStatsUserLocalService
public MBStatsUser updateStatsUser(long groupId, long userId, int messageCount, Date lastPostDate)
updateStatsUser
in interface MBStatsUserLocalService
public MBStatsUserLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<MBStatsUserLocalService>
public void setWrappedService(MBStatsUserLocalService mbStatsUserLocalService)
setWrappedService
in interface ServiceWrapper<MBStatsUserLocalService>