/** * 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.bean.PortalBeanLocatorUtil; import com.liferay.portal.kernel.util.ReferenceRegistry; /** * Provides the local service utility for SocialRelation. This utility wraps * {@link com.liferay.portlet.social.service.impl.SocialRelationLocalServiceImpl} and is the * primary access point for service operations in application layer code running * on the local server. 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. * * @author Brian Wing Shun Chan * @see SocialRelationLocalService * @see com.liferay.portlet.social.service.base.SocialRelationLocalServiceBaseImpl * @see com.liferay.portlet.social.service.impl.SocialRelationLocalServiceImpl * @generated */ @ProviderType public class SocialRelationLocalServiceUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Add custom service methods to {@link com.liferay.portlet.social.service.impl.SocialRelationLocalServiceImpl} and rerun ServiceBuilder to regenerate this class. */ /** * 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 */ public static boolean hasRelation(long userId1, long userId2, int type) { return getService().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 */ public static boolean isRelatable(long userId1, long userId2, int type) { return getService().isRelatable(userId1, userId2, type); } public static com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() { return getService().getActionableDynamicQuery(); } public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() { return getService().dynamicQuery(); } public static com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() { return getService().getIndexableActionableDynamicQuery(); } /** * @throws PortalException */ public static com.liferay.portal.kernel.model.PersistedModel deletePersistedModel( com.liferay.portal.kernel.model.PersistedModel persistedModel) throws com.liferay.portal.kernel.exception.PortalException { return getService().deletePersistedModel(persistedModel); } public static com.liferay.portal.kernel.model.PersistedModel getPersistedModel( java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation addRelation( long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation addSocialRelation( com.liferay.social.kernel.model.SocialRelation socialRelation) { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation createSocialRelation( long relationId) { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation deleteSocialRelation( com.liferay.social.kernel.model.SocialRelation socialRelation) { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation deleteSocialRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException { return getService().deleteSocialRelation(relationId); } public static com.liferay.social.kernel.model.SocialRelation fetchSocialRelation( long relationId) { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation fetchSocialRelationByUuidAndCompanyId( java.lang.String uuid, long companyId) { return getService() .fetchSocialRelationByUuidAndCompanyId(uuid, companyId); } /** * Returns the relation identified by its primary key. * * @param relationId the primary key of the relation * @return Returns the relation */ public static com.liferay.social.kernel.model.SocialRelation getRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation getRelation( long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation getSocialRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation getSocialRelationByUuidAndCompanyId( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.PortalException { return getService().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 */ public static com.liferay.social.kernel.model.SocialRelation updateSocialRelation( com.liferay.social.kernel.model.SocialRelation socialRelation) { return getService().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 */ public static int getInverseRelationsCount(long userId, int type) { return getService().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 */ public static int getRelationsCount(long userId, int type) { return getService().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 */ public static int getRelationsCount(long userId1, long userId2) { return getService().getRelationsCount(userId1, userId2); } /** * Returns the number of social relations. * * @return the number of social relations */ public static int getSocialRelationsCount() { return getService().getSocialRelationsCount(); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ public static java.lang.String getOSGiServiceIdentifier() { return getService().getOSGiServiceIdentifier(); } /** * Performs a dynamic query on the database and returns the matching rows. * * @param dynamicQuery the dynamic query * @return the matching rows */ public static <T> java.util.List<T> dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) { return getService().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 */ public static <T> java.util.List<T> dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) { return getService().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 */ public static <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 getService() .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 */ public static java.util.List<com.liferay.social.kernel.model.SocialRelation> getInverseRelations( long userId, int type, int start, int end) { return getService().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 */ public static java.util.List<com.liferay.social.kernel.model.SocialRelation> getRelations( long userId, int type, int start, int end) { return getService().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 */ public static java.util.List<com.liferay.social.kernel.model.SocialRelation> getRelations( long userId1, long userId2, int start, int end) { return getService().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 */ public static java.util.List<com.liferay.social.kernel.model.SocialRelation> getSocialRelations( int start, int end) { return getService().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 */ public static long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) { return getService().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 */ public static long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) { return getService().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 */ public static void deleteRelation( com.liferay.social.kernel.model.SocialRelation relation) throws com.liferay.portal.kernel.exception.PortalException { getService().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 */ public static void deleteRelation(long relationId) throws com.liferay.portal.kernel.exception.PortalException { getService().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 */ public static void deleteRelation(long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException { getService().deleteRelation(userId1, userId2, type); } /** * Removes all relations involving the user from the database. * * @param userId the primary key of the user */ public static void deleteRelations(long userId) { getService().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 */ public static void deleteRelations(long userId1, long userId2) throws com.liferay.portal.kernel.exception.PortalException { getService().deleteRelations(userId1, userId2); } public static SocialRelationLocalService getService() { if (_service == null) { _service = (SocialRelationLocalService)PortalBeanLocatorUtil.locate(SocialRelationLocalService.class.getName()); ReferenceRegistry.registerReference(SocialRelationLocalServiceUtil.class, "_service"); } return _service; } private static SocialRelationLocalService _service; }