001    /**
002     * Copyright (c) 2000-2012 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            public Device detectDevice(HttpServletRequest request) {
032                    throw new UnsupportedOperationException();
033            }
034    
035            public KnownDevices getKnownDevices() {
036                    throw new UnsupportedOperationException();
037            }
038    
039            public void reload() {
040                    throw new UnsupportedOperationException();
041            }
042    
043            public void setDeviceCapabilityFilter(
044                    DeviceCapabilityFilter deviceCapabilityFilter) {
045    
046                    throw new UnsupportedOperationException();
047            }
048    
049    }