mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add Device type common service interface
This commit is contained in:
parent
09a10f44dd
commit
152a97c820
@ -34,7 +34,7 @@ public class EnrolmentInfo implements Serializable {
|
||||
}
|
||||
|
||||
public enum OwnerShip {
|
||||
BYOD, COPE
|
||||
BYOD, COPE, WORK_PROFILE, GOOGLE_ENTERPRISE
|
||||
}
|
||||
|
||||
@ApiModelProperty(name = "id", value = "ID of the device in the WSO2 EMM device information database.",
|
||||
|
||||
@ -0,0 +1,37 @@
|
||||
/* Copyright (c) 2019, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||
*
|
||||
* Entgra (Pvt) Ltd. 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.common.spi;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.EnrolmentInfo;
|
||||
import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* This implementation populates device type plugin management service.
|
||||
*/
|
||||
public interface DeviceTypePluginService {
|
||||
|
||||
/**
|
||||
* To get Enrollment QR code against Ownership type
|
||||
*
|
||||
* @return QR code Map, Key as Ownership Type and Value as QR string
|
||||
* @throws DeviceManagementException if error occurred while generating the QR String for Ownership
|
||||
*/
|
||||
Map<EnrolmentInfo.OwnerShip, String> getEnrollmentQRCode() throws DeviceManagementException;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user