001    /**
002     * Copyright (c) 2000-2013 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.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    }