All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portlet.social.service.SocialRelationLocalServiceWrapper Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 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.portlet.social.service;

import aQute.bnd.annotation.ProviderType;

import com.liferay.portal.service.ServiceWrapper;

/**
 * Provides a wrapper for {@link SocialRelationLocalService}.
 *
 * @author Brian Wing Shun Chan
 * @see SocialRelationLocalService
 * @generated
 */
@ProviderType
public class SocialRelationLocalServiceWrapper
	implements SocialRelationLocalService,
		ServiceWrapper {
	public SocialRelationLocalServiceWrapper(
		SocialRelationLocalService socialRelationLocalService) {
		_socialRelationLocalService = socialRelationLocalService;
	}

	/**
	* 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
	* @throws SystemException if a system exception occurred
	*/
	@Override
	public com.liferay.portlet.social.model.SocialRelation addSocialRelation(
		com.liferay.portlet.social.model.SocialRelation socialRelation)
		throws com.liferay.portal.kernel.exception.SystemException {
		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.portlet.social.model.SocialRelation createSocialRelation(
		long relationId) {
		return _socialRelationLocalService.createSocialRelation(relationId);
	}

	/**
	* 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
	* @throws SystemException if a system exception occurred
	*/
	@Override
	public com.liferay.portlet.social.model.SocialRelation deleteSocialRelation(
		long relationId)
		throws com.liferay.portal.kernel.exception.PortalException,
			com.liferay.portal.kernel.exception.SystemException {
		return _socialRelationLocalService.deleteSocialRelation(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
	* @throws SystemException if a system exception occurred
	*/
	@Override
	public com.liferay.portlet.social.model.SocialRelation deleteSocialRelation(
		com.liferay.portlet.social.model.SocialRelation socialRelation)
		throws com.liferay.portal.kernel.exception.SystemException {
		return _socialRelationLocalService.deleteSocialRelation(socialRelation);
	}

	@Override
	public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
		return _socialRelationLocalService.dynamicQuery();
	}

	/**
	* Performs a dynamic query on the database and returns the matching rows.
	*
	* @param dynamicQuery the dynamic query
	* @return the matching rows
	* @throws SystemException if a system exception occurred
	*/
	@Override
	@SuppressWarnings("rawtypes")
	public java.util.List dynamicQuery(
		com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
		throws com.liferay.portal.kernel.exception.SystemException {
		return _socialRelationLocalService.dynamicQuery(dynamicQuery);
	}

	/**
	* 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 {@link 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 and pagination is required (start and end 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 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. *

* * @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 * @throws SystemException if a system exception occurred */ @Override @SuppressWarnings("rawtypes") public java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.dynamicQuery(dynamicQuery, start, end); } /** * 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 {@link 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 and pagination is required (start and end 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 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. *

* * @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 null) * @return the ordered range of matching rows * @throws SystemException if a system exception occurred */ @Override @SuppressWarnings("rawtypes") public java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.dynamicQuery(dynamicQuery, start, end, orderByComparator); } /** * Returns the number of rows that match the dynamic query. * * @param dynamicQuery the dynamic query * @return the number of rows that match the dynamic query * @throws SystemException if a system exception occurred */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.dynamicQueryCount(dynamicQuery); } /** * Returns the number of rows that match the dynamic query. * * @param dynamicQuery the dynamic query * @param projection the projection to apply to the query * @return the number of rows that match the dynamic query * @throws SystemException if a system exception occurred */ @Override public long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.dynamicQueryCount(dynamicQuery, projection); } @Override public com.liferay.portlet.social.model.SocialRelation fetchSocialRelation( long relationId) throws com.liferay.portal.kernel.exception.SystemException { 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 null if a matching social relation could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation fetchSocialRelationByUuidAndCompanyId( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.fetchSocialRelationByUuidAndCompanyId(uuid, companyId); } /** * 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 * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation getSocialRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getSocialRelation(relationId); } @Override public com.liferay.portal.model.PersistedModel getPersistedModel( java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getPersistedModel(primaryKeyObj); } /** * 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 * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation getSocialRelationByUuidAndCompanyId( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getSocialRelationByUuidAndCompanyId(uuid, companyId); } /** * Returns a range of all the social relations. * *

* 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 {@link 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 and pagination is required (start and end 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 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. *

* * @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 * @throws SystemException if a system exception occurred */ @Override public java.util.List getSocialRelations( int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getSocialRelations(start, end); } /** * Returns the number of social relations. * * @return the number of social relations * @throws SystemException if a system exception occurred */ @Override public int getSocialRelationsCount() throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getSocialRelationsCount(); } /** * 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 * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation updateSocialRelation( com.liferay.portlet.social.model.SocialRelation socialRelation) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.updateSocialRelation(socialRelation); } /** * Returns the Spring bean ID for this bean. * * @return the Spring bean ID for this bean */ @Override public java.lang.String getBeanIdentifier() { return _socialRelationLocalService.getBeanIdentifier(); } /** * Sets the Spring bean ID for this bean. * * @param beanIdentifier the Spring bean ID for this bean */ @Override public void setBeanIdentifier(java.lang.String beanIdentifier) { _socialRelationLocalService.setBeanIdentifier(beanIdentifier); } /** * 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 * @throws PortalException if the users could not be found, if the users were not from the same company, or if either of the users was the default user * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation addRelation( long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.addRelation(userId1, userId2, type); } /** * Removes the relation (and its inverse in case of a bidirectional * relation) from the database. * * @param relationId the primary key of the relation * @throws PortalException if the relation could not be found * @throws SystemException if a system exception occurred */ @Override public void deleteRelation(long relationId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _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 * @throws PortalException if the relation or its inverse relation (if applicable) could not be found * @throws SystemException if a system exception occurred */ @Override public void deleteRelation(long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _socialRelationLocalService.deleteRelation(userId1, userId2, type); } /** * Removes the relation (and its inverse in case of a bidirectional * relation) from the database. * * @param relation the relation to be removed * @throws PortalException if the relation is bidirectional and its inverse relation could not be found * @throws SystemException if a system exception occurred */ @Override public void deleteRelation( com.liferay.portlet.social.model.SocialRelation relation) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _socialRelationLocalService.deleteRelation(relation); } /** * Removes all relations involving the user from the database. * * @param userId the primary key of the user * @throws SystemException if a system exception occurred */ @Override public void deleteRelations(long userId) throws com.liferay.portal.kernel.exception.SystemException { _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 * @throws PortalException if the inverse relation could not be found * @throws SystemException if a system exception occurred */ @Override public void deleteRelations(long userId1, long userId2) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { _socialRelationLocalService.deleteRelations(userId1, userId2); } /** * Returns a range of all the inverse relations of the given type for which * the user is User2 of the relation. * *

* 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 {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @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 * @throws SystemException if a system exception occurred */ @Override public java.util.List getInverseRelations( long userId, int type, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getInverseRelations(userId, type, start, end); } /** * 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 * @throws SystemException if a system exception occurred */ @Override public int getInverseRelationsCount(long userId, int type) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getInverseRelationsCount(userId, type); } /** * Returns the relation identified by its primary key. * * @param relationId the primary key of the relation * @return Returns the relation * @throws PortalException if the relation could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation getRelation( long relationId) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { 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 * @throws PortalException if the relation could not be found * @throws SystemException if a system exception occurred */ @Override public com.liferay.portlet.social.model.SocialRelation getRelation( long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.PortalException, com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getRelation(userId1, userId2, type); } /** * Returns a range of all the relations of the given type where the user is * the subject of the relation. * *

* 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 {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @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 * @throws SystemException if a system exception occurred */ @Override public java.util.List getRelations( long userId, int type, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getRelations(userId, type, start, end); } /** * Returns a range of all the relations between User1 and User2. * *

* 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 {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @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 * @throws SystemException if a system exception occurred */ @Override public java.util.List getRelations( long userId1, long userId2, int start, int end) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getRelations(userId1, userId2, start, end); } /** * 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 * @throws SystemException if a system exception occurred */ @Override public int getRelationsCount(long userId, int type) throws com.liferay.portal.kernel.exception.SystemException { 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 * @throws SystemException if a system exception occurred */ @Override public int getRelationsCount(long userId1, long userId2) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.getRelationsCount(userId1, userId2); } /** * 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. * * @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 true if the relation exists; false otherwise * @throws SystemException if a system exception occurred */ @Override public boolean hasRelation(long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.hasRelation(userId1, userId2, 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. * *

* 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. *

* * @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 true if the two users can be in a new relation of the given type; false otherwise * @throws SystemException if a system exception occurred */ @Override public boolean isRelatable(long userId1, long userId2, int type) throws com.liferay.portal.kernel.exception.SystemException { return _socialRelationLocalService.isRelatable(userId1, userId2, type); } /** * @deprecated As of 6.1.0, replaced by {@link #getWrappedService} */ public SocialRelationLocalService getWrappedSocialRelationLocalService() { return _socialRelationLocalService; } /** * @deprecated As of 6.1.0, replaced by {@link #setWrappedService} */ public void setWrappedSocialRelationLocalService( SocialRelationLocalService socialRelationLocalService) { _socialRelationLocalService = socialRelationLocalService; } @Override public SocialRelationLocalService getWrappedService() { return _socialRelationLocalService; } @Override public void setWrappedService( SocialRelationLocalService socialRelationLocalService) { _socialRelationLocalService = socialRelationLocalService; } private SocialRelationLocalService _socialRelationLocalService; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy