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.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    }