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
89132f4824
commit
cb99e4c285
@ -18,10 +18,21 @@
|
||||
|
||||
package io.entgra.device.mgt.core.device.mgt.common.general;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class QREnrollmentDetails {
|
||||
String ownershipType;
|
||||
String username;
|
||||
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; }
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user