001 /** 002 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved. 003 * 004 * This library is free software; you can redistribute it and/or modify it under 005 * the terms of the GNU Lesser General Public License as published by the Free 006 * Software Foundation; either version 2.1 of the License, or (at your option) 007 * any later version. 008 * 009 * This library is distributed in the hope that it will be useful, but WITHOUT 010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 012 * details. 013 */ 014 015 package com.liferay.portlet.polls.service; 016 017 import com.liferay.portal.service.ServiceWrapper; 018 019 /** 020 * <p> 021 * This class is a wrapper for {@link PollsChoiceService}. 022 * </p> 023 * 024 * @author Brian Wing Shun Chan 025 * @see PollsChoiceService 026 * @generated 027 */ 028 public class PollsChoiceServiceWrapper implements PollsChoiceService, 029 ServiceWrapper<PollsChoiceService> { 030 public PollsChoiceServiceWrapper(PollsChoiceService pollsChoiceService) { 031 _pollsChoiceService = pollsChoiceService; 032 } 033 034 /** 035 * Returns the Spring bean ID for this bean. 036 * 037 * @return the Spring bean ID for this bean 038 */ 039 public java.lang.String getBeanIdentifier() { 040 return _pollsChoiceService.getBeanIdentifier(); 041 } 042 043 /** 044 * Sets the Spring bean ID for this bean. 045 * 046 * @param beanIdentifier the Spring bean ID for this bean 047 */ 048 public void setBeanIdentifier(java.lang.String beanIdentifier) { 049 _pollsChoiceService.setBeanIdentifier(beanIdentifier); 050 } 051 052 /** 053 * @deprecated Renamed to {@link #getWrappedService} 054 */ 055 public PollsChoiceService getWrappedPollsChoiceService() { 056 return _pollsChoiceService; 057 } 058 059 /** 060 * @deprecated Renamed to {@link #setWrappedService} 061 */ 062 public void setWrappedPollsChoiceService( 063 PollsChoiceService pollsChoiceService) { 064 _pollsChoiceService = pollsChoiceService; 065 } 066 067 public PollsChoiceService getWrappedService() { 068 return _pollsChoiceService; 069 } 070 071 public void setWrappedService(PollsChoiceService pollsChoiceService) { 072 _pollsChoiceService = pollsChoiceService; 073 } 074 075 private PollsChoiceService _pollsChoiceService; 076 }