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.portal.mobile.device;
016    
017    import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
018    import com.liferay.portal.kernel.mobile.device.Device;
019    import com.liferay.portal.kernel.mobile.device.DeviceCapabilityFilter;
020    import com.liferay.portal.kernel.mobile.device.DeviceRecognitionProvider;
021    import com.liferay.portal.kernel.mobile.device.KnownDevices;
022    
023    import javax.servlet.http.HttpServletRequest;
024    
025    /**
026     * @author Michael C. Han
027     */
028    public class DeviceRecognitionProviderProxyBean
029            extends BaseProxyBean implements DeviceRecognitionProvider {
030    
031            @Override
032            public Device detectDevice(HttpServletRequest request) {
033                    throw new UnsupportedOperationException();
034            }
035    
036            @Override
037            public KnownDevices getKnownDevices() {
038                    throw new UnsupportedOperationException();
039            }
040    
041            @Override
042            public void reload() {
043                    throw new UnsupportedOperationException();
044            }
045    
046            @Override
047            public void setDeviceCapabilityFilter(
048                    DeviceCapabilityFilter deviceCapabilityFilter) {
049    
050                    throw new UnsupportedOperationException();
051            }
052    
053    }