/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.social.kernel.service; import aQute.bnd.annotation.ProviderType; import com.liferay.portal.kernel.service.ServiceWrapper; /** * Provides a wrapper for {@link SocialRelationLocalService}. * * @author Brian Wing Shun Chan * @see SocialRelationLocalService * @generated */ @ProviderType public class SocialRelationLocalServiceWrapper implements SocialRelationLocalService, ServiceWrapper<SocialRelationLocalService> { public SocialRelationLocalServiceWrapper( SocialRelationLocalService socialRelationLocalService) { _socialRelationLocalService = socialRelationLocalService; } /** * Returns <code>true</code> if a relation of the given type exists where * the user with primary key <code>userId1</code> is User1 of the relation * and the user with the primary key <code>userId2</code> is User2 of the * relation. * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @param type the relation's type * @return <code>true</code> if the relation exists; <code>false</code> otherwise */ @Override public boolean hasRelation(long userId1, long userId2, int type) { return _socialRelationLocalService.hasRelation(userId1, userId2, type); } /** * Returns <code>true</code> if the users can be in a relation of the given * type where the user with primary key <code>userId1</code> is User1 of the * relation and the user with the primary key <code>userId2</code> is User2 * of the relation. * * <p> * This method returns <code>false</code> if User1 and User2 are the same, * if either user is the default user, or if a matching relation already * exists. * </p> * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @param type the relation's type * @return <code>true</code> if the two users can be in a new relation of the given type; <code>false</code> otherwise */ @Override public boolean isRelatable(long userId1, long userId2, int type) { return _socialRelationLocalService.isRelatable(userId1, userId2, type); } @Override public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() { return _socialRelationLocalService.getActionableDynamicQuery(); } @Override public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() { return _socialRelationLocalService.dynamicQuery(); } @Override public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() { return _socialRelationLocalService.getIndexableActionableDynamicQuery(); } /** * @throws PortalException */ @Override public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel( com.liferay.portal.kernel.model.PersistedModel persistedModel) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.deletePersistedModel(persistedModel); } @Override public com.liferay.portal.kernel.model.PersistedModel getPersistedModel( java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.getPersistedModel(primaryKeyObj); } /** * Adds a social relation between the two users to the database. * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @param type the type of the relation * @return the social relation */ @Override public com.liferay.social.kernel.model.SocialRelation addRelation( long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.addRelation(userId1, userId2, type); } /** * Adds the social relation to the database. Also notifies the appropriate model listeners. * * @param socialRelation the social relation * @return the social relation that was added */ @Override public com.liferay.social.kernel.model.SocialRelation addSocialRelation( com.liferay.social.kernel.model.SocialRelation socialRelation) { return _socialRelationLocalService.addSocialRelation(socialRelation); } /** * Creates a new social relation with the primary key. Does not add the social relation to the database. * * @param relationId the primary key for the new social relation * @return the new social relation */ @Override public com.liferay.social.kernel.model.SocialRelation createSocialRelation( long relationId) { return _socialRelationLocalService.createSocialRelation(relationId); } /** * Deletes the social relation from the database. Also notifies the appropriate model listeners. * * @param socialRelation the social relation * @return the social relation that was removed */ @Override public com.liferay.social.kernel.model.SocialRelation deleteSocialRelation( com.liferay.social.kernel.model.SocialRelation socialRelation) { return _socialRelationLocalService.deleteSocialRelation(socialRelation); } /** * Deletes the social relation with the primary key from the database. Also notifies the appropriate model listeners. * * @param relationId the primary key of the social relation * @return the social relation that was removed * @throws PortalException if a social relation with the primary key could not be found */ @Override public com.liferay.social.kernel.model.SocialRelation deleteSocialRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.deleteSocialRelation(relationId); } @Override public com.liferay.social.kernel.model.SocialRelation fetchSocialRelation( long relationId) { return _socialRelationLocalService.fetchSocialRelation(relationId); } /** * Returns the social relation with the matching UUID and company. * * @param uuid the social relation's UUID * @param companyId the primary key of the company * @return the matching social relation, or <code>null</code> if a matching social relation could not be found */ @Override public com.liferay.social.kernel.model.SocialRelation fetchSocialRelationByUuidAndCompanyId( java.lang.String uuid, long companyId) { return _socialRelationLocalService.fetchSocialRelationByUuidAndCompanyId(uuid, companyId); } /** * Returns the relation identified by its primary key. * * @param relationId the primary key of the relation * @return Returns the relation */ @Override public com.liferay.social.kernel.model.SocialRelation getRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.getRelation(relationId); } /** * Returns the relation of the given type between User1 and User2. * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @param type the relation's type * @return Returns the relation */ @Override public com.liferay.social.kernel.model.SocialRelation getRelation( long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.getRelation(userId1, userId2, type); } /** * Returns the social relation with the primary key. * * @param relationId the primary key of the social relation * @return the social relation * @throws PortalException if a social relation with the primary key could not be found */ @Override public com.liferay.social.kernel.model.SocialRelation getSocialRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.getSocialRelation(relationId); } /** * Returns the social relation with the matching UUID and company. * * @param uuid the social relation's UUID * @param companyId the primary key of the company * @return the matching social relation * @throws PortalException if a matching social relation could not be found */ @Override public com.liferay.social.kernel.model.SocialRelation getSocialRelationByUuidAndCompanyId( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.PortalException { return _socialRelationLocalService.getSocialRelationByUuidAndCompanyId(uuid, companyId); } /** * Updates the social relation in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param socialRelation the social relation * @return the social relation that was updated */ @Override public com.liferay.social.kernel.model.SocialRelation updateSocialRelation( com.liferay.social.kernel.model.SocialRelation socialRelation) { return _socialRelationLocalService.updateSocialRelation(socialRelation); } /** * Returns the number of inverse relations of the given type for which the * user is User2 of the relation. * * @param userId the primary key of the user * @param type the relation's type * @return the number of matching relations */ @Override public int getInverseRelationsCount(long userId, int type) { return _socialRelationLocalService.getInverseRelationsCount(userId, type); } /** * Returns the number of relations of the given type where the user is the * subject of the relation. * * @param userId the primary key of the user * @param type the relation's type * @return the number of relations */ @Override public int getRelationsCount(long userId, int type) { return _socialRelationLocalService.getRelationsCount(userId, type); } /** * Returns the number of relations between User1 and User2. * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @return the number of relations */ @Override public int getRelationsCount(long userId1, long userId2) { return _socialRelationLocalService.getRelationsCount(userId1, userId2); } /** * Returns the number of social relations. * * @return the number of social relations */ @Override public int getSocialRelationsCount() { return _socialRelationLocalService.getSocialRelationsCount(); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ @Override public java.lang.String getOSGiServiceIdentifier() { return _socialRelationLocalService.getOSGiServiceIdentifier(); } /** * Performs a dynamic query on the database and returns the matching rows. * * @param dynamicQuery the dynamic query * @return the matching rows */ @Override public <T> java.util.List<T> dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) { return _socialRelationLocalService.dynamicQuery(dynamicQuery); } /** * Performs a dynamic query on the database and returns a range of the matching rows. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.social.model.impl.SocialRelationModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @param dynamicQuery the dynamic query * @param start the lower bound of the range of model instances * @param end the upper bound of the range of model instances (not inclusive) * @return the range of matching rows */ @Override public <T> java.util.List<T> dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) { return _socialRelationLocalService.dynamicQuery(dynamicQuery, start, end); } /** * Performs a dynamic query on the database and returns an ordered range of the matching rows. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.social.model.impl.SocialRelationModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @param dynamicQuery the dynamic query * @param start the lower bound of the range of model instances * @param end the upper bound of the range of model instances (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching rows */ @Override public <T> java.util.List<T> dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) { return _socialRelationLocalService.dynamicQuery(dynamicQuery, start, end, orderByComparator); } /** * Returns a range of all the inverse relations of the given type for which * the user is User2 of the relation. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param userId the primary key of the user * @param type the relation's type * @param start the lower bound of the range of results * @param end the upper bound of the range of results (not inclusive) * @return the range of matching relations */ @Override public java.util.List<com.liferay.social.kernel.model.SocialRelation> getInverseRelations( long userId, int type, int start, int end) { return _socialRelationLocalService.getInverseRelations(userId, type, start, end); } /** * Returns a range of all the relations of the given type where the user is * the subject of the relation. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param userId the primary key of the user * @param type the relation's type * @param start the lower bound of the range of results * @param end the upper bound of the range of results (not inclusive) * @return the range of relations */ @Override public java.util.List<com.liferay.social.kernel.model.SocialRelation> getRelations( long userId, int type, int start, int end) { return _socialRelationLocalService.getRelations(userId, type, start, end); } /** * Returns a range of all the relations between User1 and User2. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @param start the lower bound of the range of results * @param end the upper bound of the range of results (not inclusive) * @return the range of relations */ @Override public java.util.List<com.liferay.social.kernel.model.SocialRelation> getRelations( long userId1, long userId2, int start, int end) { return _socialRelationLocalService.getRelations(userId1, userId2, start, end); } /** * Returns a range of all the social relations. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.social.model.impl.SocialRelationModelImpl}. If both <code>orderByComparator</code> 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. * </p> * * @param start the lower bound of the range of social relations * @param end the upper bound of the range of social relations (not inclusive) * @return the range of social relations */ @Override public java.util.List<com.liferay.social.kernel.model.SocialRelation> getSocialRelations( int start, int end) { return _socialRelationLocalService.getSocialRelations(start, end); } /** * Returns the number of rows matching the dynamic query. * * @param dynamicQuery the dynamic query * @return the number of rows matching the dynamic query */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) { return _socialRelationLocalService.dynamicQueryCount(dynamicQuery); } /** * Returns the number of rows matching the dynamic query. * * @param dynamicQuery the dynamic query * @param projection the projection to apply to the query * @return the number of rows matching the dynamic query */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) { return _socialRelationLocalService.dynamicQueryCount(dynamicQuery, projection); } /** * Removes the relation (and its inverse in case of a bidirectional * relation) from the database. * * @param relation the relation to be removed */ @Override public void deleteRelation( com.liferay.social.kernel.model.SocialRelation relation) throws com.liferay.portal.kernel.exception.PortalException { _socialRelationLocalService.deleteRelation(relation); } /** * Removes the relation (and its inverse in case of a bidirectional * relation) from the database. * * @param relationId the primary key of the relation */ @Override public void deleteRelation(long relationId) throws com.liferay.portal.kernel.exception.PortalException { _socialRelationLocalService.deleteRelation(relationId); } /** * Removes the matching relation (and its inverse in case of a bidirectional * relation) from the database. * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation * @param type the relation's type */ @Override public void deleteRelation(long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException { _socialRelationLocalService.deleteRelation(userId1, userId2, type); } /** * Removes all relations involving the user from the database. * * @param userId the primary key of the user */ @Override public void deleteRelations(long userId) { _socialRelationLocalService.deleteRelations(userId); } /** * Removes all relations between User1 and User2. * * @param userId1 the user that is the subject of the relation * @param userId2 the user at the other end of the relation */ @Override public void deleteRelations(long userId1, long userId2) throws com.liferay.portal.kernel.exception.PortalException { _socialRelationLocalService.deleteRelations(userId1, userId2); } @Override public SocialRelationLocalService getWrappedService() { return _socialRelationLocalService; } @Override public void setWrappedService( SocialRelationLocalService socialRelationLocalService) { _socialRelationLocalService = socialRelationLocalService; } private SocialRelationLocalService _socialRelationLocalService; }