001 /** 002 * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. 003 * 004 * The contents of this file are subject to the terms of the Liferay Enterprise 005 * Subscription License ("License"). You may not use this file except in 006 * compliance with the License. You can obtain a copy of the License by 007 * contacting Liferay, Inc. See the License for the specific language governing 008 * permissions and limitations under the License, including but not limited to 009 * distribution rights of the Software. 010 * 011 * 012 * 013 */ 014 015 package com.liferay.portal.service; 016 017 /** 018 * <p> 019 * This class is a wrapper for {@link ContactService}. 020 * </p> 021 * 022 * @author Brian Wing Shun Chan 023 * @see ContactService 024 * @generated 025 */ 026 public class ContactServiceWrapper implements ContactService, 027 ServiceWrapper<ContactService> { 028 public ContactServiceWrapper(ContactService contactService) { 029 _contactService = contactService; 030 } 031 032 /** 033 * Returns the Spring bean ID for this bean. 034 * 035 * @return the Spring bean ID for this bean 036 */ 037 public java.lang.String getBeanIdentifier() { 038 return _contactService.getBeanIdentifier(); 039 } 040 041 /** 042 * Sets the Spring bean ID for this bean. 043 * 044 * @param beanIdentifier the Spring bean ID for this bean 045 */ 046 public void setBeanIdentifier(java.lang.String beanIdentifier) { 047 _contactService.setBeanIdentifier(beanIdentifier); 048 } 049 050 /** 051 * @deprecated Renamed to {@link #getWrappedService} 052 */ 053 public ContactService getWrappedContactService() { 054 return _contactService; 055 } 056 057 /** 058 * @deprecated Renamed to {@link #setWrappedService} 059 */ 060 public void setWrappedContactService(ContactService contactService) { 061 _contactService = contactService; 062 } 063 064 public ContactService getWrappedService() { 065 return _contactService; 066 } 067 068 public void setWrappedService(ContactService contactService) { 069 _contactService = contactService; 070 } 071 072 private ContactService _contactService; 073 }