mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request 'iOS user enrollment support' (#143) from inosh/device-mgt-core:ios-user-enrollment into master
Reviewed-on: https://repository.entgra.net/community/device-mgt-core/pulls/143
This commit is contained in:
commit
b0dfadbe68
@ -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