/* * Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * you may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.wso2.carbon.device.mgt.core; import org.wso2.carbon.device.mgt.common.*; import org.wso2.carbon.device.mgt.common.app.mgt.AppManagerConnectorException; import org.wso2.carbon.device.mgt.common.operation.mgt.Operation; import org.wso2.carbon.device.mgt.common.spi.DeviceMgtService; import java.util.List; public class TestDeviceManager implements DeviceMgtService { public static final String DEVICE_TYPE_TEST = "Test"; @Override public String getProviderType() { return TestDeviceManager.DEVICE_TYPE_TEST; } @Override public FeatureManager getFeatureManager() { return null; } @Override public boolean enrollDevice(Device device) throws DeviceManagementException { return false; } @Override public boolean modifyEnrollment(Device device) throws DeviceManagementException { return false; } @Override public boolean disenrollDevice(DeviceIdentifier deviceId) throws DeviceManagementException { return false; } @Override public boolean isEnrolled(DeviceIdentifier deviceId) throws DeviceManagementException { return false; } @Override public boolean isActive(DeviceIdentifier deviceId) throws DeviceManagementException { return false; } @Override public boolean setActive(DeviceIdentifier deviceId, boolean status) throws DeviceManagementException { return false; } @Override public List<Device> getAllDevices() throws DeviceManagementException { return null; } @Override public Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException { return null; } @Override public boolean updateDeviceInfo(DeviceIdentifier deviceId, Device device) throws DeviceManagementException { return false; } @Override public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType) throws DeviceManagementException { return false; } @Override public boolean isClaimable(DeviceIdentifier deviceId) throws DeviceManagementException { return false; } @Override public void installApplication(Operation operation, List<DeviceIdentifier> deviceIdentifiers) throws AppManagerConnectorException { } }