mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
iOS user enrollment support
Fixes https://roadmap.entgra.net/issues/10149
This commit is contained in:
parent
c6cc0f9a67
commit
cfe7e520ab
@ -18,10 +18,21 @@
|
|||||||
|
|
||||||
package io.entgra.device.mgt.core.device.mgt.common.general;
|
package io.entgra.device.mgt.core.device.mgt.common.general;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public class QREnrollmentDetails {
|
public class QREnrollmentDetails {
|
||||||
String ownershipType;
|
String ownershipType;
|
||||||
String username;
|
String username;
|
||||||
String enrollmentMode;
|
String enrollmentMode;
|
||||||
|
Map<String, String> customValues;
|
||||||
|
|
||||||
|
public Map<String, String> getCustomValues() {
|
||||||
|
return customValues;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCustomValues(Map<String, String> customValues) {
|
||||||
|
this.customValues = customValues;
|
||||||
|
}
|
||||||
|
|
||||||
public String getOwnershipType() { return ownershipType; }
|
public String getOwnershipType() { return ownershipType; }
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user