public class SocialRelationLocalServiceWrapper extends Object implements ServiceWrapper<SocialRelationLocalService>, SocialRelationLocalService
SocialRelationLocalService
.SocialRelationLocalService
Constructor and Description |
---|
SocialRelationLocalServiceWrapper(SocialRelationLocalService socialRelationLocalService) |
Modifier and Type | Method and Description |
---|---|
SocialRelation |
addRelation(long userId1,
long userId2,
int type)
Adds a social relation between the two users to the database.
|
SocialRelation |
addSocialRelation(SocialRelation socialRelation)
Adds the social relation to the database.
|
PersistedModel |
createPersistedModel(Serializable primaryKeyObj) |
SocialRelation |
createSocialRelation(long relationId)
Creates a new social relation with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
void |
deleteRelation(long relationId)
Removes the relation (and its inverse in case of a bidirectional
relation) from the database.
|
void |
deleteRelation(long userId1,
long userId2,
int type)
Removes the matching relation (and its inverse in case of a bidirectional
relation) from the database.
|
void |
deleteRelation(SocialRelation relation)
Removes the relation (and its inverse in case of a bidirectional
relation) from the database.
|
void |
deleteRelations(long userId)
Removes all relations involving the user from the database.
|
void |
deleteRelations(long userId1,
long userId2)
Removes all relations between User1 and User2.
|
SocialRelation |
deleteSocialRelation(long relationId)
Deletes the social relation with the primary key from the database.
|
SocialRelation |
deleteSocialRelation(SocialRelation socialRelation)
Deletes the social relation from the database.
|
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
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.
|
SocialRelation |
fetchSocialRelation(long relationId) |
SocialRelation |
fetchSocialRelationByUuidAndCompanyId(String uuid,
long companyId)
Returns the social relation with the matching UUID and company.
|
ActionableDynamicQuery |
getActionableDynamicQuery() |
CTPersistence<SocialRelation> |
getCTPersistence() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
List<SocialRelation> |
getInverseRelations(long userId,
int type,
int start,
int end)
Returns a range of all the inverse relations of the given type for which
the user is User2 of the relation.
|
int |
getInverseRelationsCount(long userId,
int type)
Returns the number of inverse relations of the given type for which the
user is User2 of the relation.
|
Class<SocialRelation> |
getModelClass() |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
SocialRelation |
getRelation(long relationId)
Returns the relation identified by its primary key.
|
SocialRelation |
getRelation(long userId1,
long userId2,
int type)
Returns the relation of the given type between User1 and User2.
|
List<SocialRelation> |
getRelations(long userId,
int type,
int start,
int end)
Returns a range of all the relations of the given type where the user is
the subject of the relation.
|
List<SocialRelation> |
getRelations(long userId1,
long userId2,
int start,
int end)
Returns a range of all the relations between User1 and User2.
|
int |
getRelationsCount(long userId,
int type)
Returns the number of relations of the given type where the user is the
subject of the relation.
|
int |
getRelationsCount(long userId1,
long userId2)
Returns the number of relations between User1 and User2.
|
SocialRelation |
getSocialRelation(long relationId)
Returns the social relation with the primary key.
|
SocialRelation |
getSocialRelationByUuidAndCompanyId(String uuid,
long companyId)
Returns the social relation with the matching UUID and company.
|
List<SocialRelation> |
getSocialRelations(int start,
int end)
Returns a range of all the social relations.
|
int |
getSocialRelationsCount()
Returns the number of social relations.
|
SocialRelationLocalService |
getWrappedService() |
boolean |
hasRelation(long userId1,
long userId2,
int type)
Returns
true if a relation of the given type exists where
the user with primary key userId1 is User1 of the relation
and the user with the primary key userId2 is User2 of the
relation. |
boolean |
isRelatable(long userId1,
long userId2,
int type)
Returns
true if the users can be in a relation of the given
type where the user with primary key userId1 is User1 of the
relation and the user with the primary key userId2 is User2
of the relation. |
void |
setWrappedService(SocialRelationLocalService socialRelationLocalService) |
SocialRelation |
updateSocialRelation(SocialRelation socialRelation)
Updates the social relation in the database or adds it if it does not yet exist.
|
<R,E extends Throwable> |
updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<SocialRelation>,R,E> updateUnsafeFunction) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getBasePersistence
public SocialRelationLocalServiceWrapper(SocialRelationLocalService socialRelationLocalService)
public SocialRelation addRelation(long userId1, long userId2, int type) throws PortalException
addRelation
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationtype
- the type of the relationPortalException
public SocialRelation addSocialRelation(SocialRelation socialRelation)
Important: Inspect SocialRelationLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
addSocialRelation
in interface SocialRelationLocalService
socialRelation
- the social relationpublic PersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
createPersistedModel
in interface PersistedModelLocalService
createPersistedModel
in interface SocialRelationLocalService
PortalException
public SocialRelation createSocialRelation(long relationId)
createSocialRelation
in interface SocialRelationLocalService
relationId
- the primary key for the new social relationpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
deletePersistedModel
in interface SocialRelationLocalService
PortalException
public void deleteRelation(long relationId) throws PortalException
deleteRelation
in interface SocialRelationLocalService
relationId
- the primary key of the relationPortalException
public void deleteRelation(long userId1, long userId2, int type) throws PortalException
deleteRelation
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationtype
- the relation's typePortalException
public void deleteRelation(SocialRelation relation) throws PortalException
deleteRelation
in interface SocialRelationLocalService
relation
- the relation to be removedPortalException
public void deleteRelations(long userId)
deleteRelations
in interface SocialRelationLocalService
userId
- the primary key of the userpublic void deleteRelations(long userId1, long userId2) throws PortalException
deleteRelations
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationPortalException
public SocialRelation deleteSocialRelation(long relationId) throws PortalException
Important: Inspect SocialRelationLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteSocialRelation
in interface SocialRelationLocalService
relationId
- the primary key of the social relationPortalException
- if a social relation with the primary key could not be foundpublic SocialRelation deleteSocialRelation(SocialRelation socialRelation)
Important: Inspect SocialRelationLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteSocialRelation
in interface SocialRelationLocalService
socialRelation
- the social relationpublic <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery
in interface SocialRelationLocalService
public DynamicQuery dynamicQuery()
dynamicQuery
in interface SocialRelationLocalService
public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface SocialRelationLocalService
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portlet.social.model.impl.SocialRelationModelImpl
.
dynamicQuery
in interface SocialRelationLocalService
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portlet.social.model.impl.SocialRelationModelImpl
.
dynamicQuery
in interface SocialRelationLocalService
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 SocialRelationLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface SocialRelationLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic SocialRelation fetchSocialRelation(long relationId)
fetchSocialRelation
in interface SocialRelationLocalService
public SocialRelation fetchSocialRelationByUuidAndCompanyId(String uuid, long companyId)
fetchSocialRelationByUuidAndCompanyId
in interface SocialRelationLocalService
uuid
- the social relation's UUIDcompanyId
- the primary key of the companynull
if a matching social relation could not be foundpublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface SocialRelationLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface SocialRelationLocalService
public List<SocialRelation> getInverseRelations(long userId, int type, 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.
getInverseRelations
in interface SocialRelationLocalService
userId
- the primary key of the usertype
- the relation's typestart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)public int getInverseRelationsCount(long userId, int type)
getInverseRelationsCount
in interface SocialRelationLocalService
userId
- the primary key of the usertype
- the relation's typepublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface SocialRelationLocalService
public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
getPersistedModel
in interface SocialRelationLocalService
PortalException
public SocialRelation getRelation(long relationId) throws PortalException
getRelation
in interface SocialRelationLocalService
relationId
- the primary key of the relationPortalException
public SocialRelation getRelation(long userId1, long userId2, int type) throws PortalException
getRelation
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationtype
- the relation's typePortalException
public List<SocialRelation> getRelations(long userId, int type, 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.
getRelations
in interface SocialRelationLocalService
userId
- the primary key of the usertype
- the relation's typestart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)public List<SocialRelation> getRelations(long userId1, long userId2, 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.
getRelations
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)public int getRelationsCount(long userId, int type)
getRelationsCount
in interface SocialRelationLocalService
userId
- the primary key of the usertype
- the relation's typepublic int getRelationsCount(long userId1, long userId2)
getRelationsCount
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationpublic SocialRelation getSocialRelation(long relationId) throws PortalException
getSocialRelation
in interface SocialRelationLocalService
relationId
- the primary key of the social relationPortalException
- if a social relation with the primary key could not be foundpublic SocialRelation getSocialRelationByUuidAndCompanyId(String uuid, long companyId) throws PortalException
getSocialRelationByUuidAndCompanyId
in interface SocialRelationLocalService
uuid
- the social relation's UUIDcompanyId
- the primary key of the companyPortalException
- if a matching social relation could not be foundpublic List<SocialRelation> getSocialRelations(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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portlet.social.model.impl.SocialRelationModelImpl
.
getSocialRelations
in interface SocialRelationLocalService
start
- the lower bound of the range of social relationsend
- the upper bound of the range of social relations (not inclusive)public int getSocialRelationsCount()
getSocialRelationsCount
in interface SocialRelationLocalService
public boolean hasRelation(long userId1, long userId2, int type)
true
if a relation of the given type exists where
the user with primary key userId1
is User1 of the relation
and the user with the primary key userId2
is User2 of the
relation.hasRelation
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationtype
- the relation's typetrue
if the relation exists; false
otherwisepublic boolean isRelatable(long userId1, long userId2, int type)
true
if the users can be in a relation of the given
type where the user with primary key userId1
is User1 of the
relation and the user with the primary key userId2
is User2
of the relation.
This method returns false
if User1 and User2 are the same,
if either user is the default user, or if a matching relation already
exists.
isRelatable
in interface SocialRelationLocalService
userId1
- the user that is the subject of the relationuserId2
- the user at the other end of the relationtype
- the relation's typetrue
if the two users can be in a new relation of
the given type; false
otherwisepublic SocialRelation updateSocialRelation(SocialRelation socialRelation)
Important: Inspect SocialRelationLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
updateSocialRelation
in interface SocialRelationLocalService
socialRelation
- the social relationpublic CTPersistence<SocialRelation> getCTPersistence()
getCTPersistence
in interface CTService<SocialRelation>
getCTPersistence
in interface SocialRelationLocalService
public Class<SocialRelation> getModelClass()
getModelClass
in interface CTService<SocialRelation>
getModelClass
in interface SocialRelationLocalService
public <R,E extends Throwable> R updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<CTPersistence<SocialRelation>,R,E> updateUnsafeFunction) throws E extends Throwable
updateWithUnsafeFunction
in interface CTService<SocialRelation>
updateWithUnsafeFunction
in interface SocialRelationLocalService
E extends Throwable
public SocialRelationLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<SocialRelationLocalService>
public void setWrappedService(SocialRelationLocalService socialRelationLocalService)
setWrappedService
in interface ServiceWrapper<SocialRelationLocalService>