com.liferay.portal.service.PhoneServiceWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* 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.portal.service;
/**
* Provides a wrapper for {@link PhoneService}.
*
* @author Brian Wing Shun Chan
* @see PhoneService
* @generated
*/
public class PhoneServiceWrapper implements PhoneService,
ServiceWrapper {
public PhoneServiceWrapper(PhoneService phoneService) {
_phoneService = phoneService;
}
/**
* Returns the Spring bean ID for this bean.
*
* @return the Spring bean ID for this bean
*/
@Override
public java.lang.String getBeanIdentifier() {
return _phoneService.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) {
_phoneService.setBeanIdentifier(beanIdentifier);
}
/**
* @deprecated As of 6.2.0, replaced by {@link #addPhone( String, long,
String, String, int, boolean, ServiceContext)}
*/
@Override
public com.liferay.portal.model.Phone addPhone(java.lang.String className,
long classPK, java.lang.String number, java.lang.String extension,
int typeId, boolean primary)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _phoneService.addPhone(className, classPK, number, extension,
typeId, primary);
}
@Override
public com.liferay.portal.model.Phone addPhone(java.lang.String className,
long classPK, java.lang.String number, java.lang.String extension,
int typeId, boolean primary,
com.liferay.portal.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _phoneService.addPhone(className, classPK, number, extension,
typeId, primary, serviceContext);
}
@Override
public void deletePhone(long phoneId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
_phoneService.deletePhone(phoneId);
}
@Override
public com.liferay.portal.model.Phone getPhone(long phoneId)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _phoneService.getPhone(phoneId);
}
@Override
public java.util.List getPhones(
java.lang.String className, long classPK)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _phoneService.getPhones(className, classPK);
}
@Override
public com.liferay.portal.model.Phone updatePhone(long phoneId,
java.lang.String number, java.lang.String extension, int typeId,
boolean primary)
throws com.liferay.portal.kernel.exception.PortalException,
com.liferay.portal.kernel.exception.SystemException {
return _phoneService.updatePhone(phoneId, number, extension, typeId,
primary);
}
/**
* @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
*/
public PhoneService getWrappedPhoneService() {
return _phoneService;
}
/**
* @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
*/
public void setWrappedPhoneService(PhoneService phoneService) {
_phoneService = phoneService;
}
@Override
public PhoneService getWrappedService() {
return _phoneService;
}
@Override
public void setWrappedService(PhoneService phoneService) {
_phoneService = phoneService;
}
private PhoneService _phoneService;
}