mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add optional platform configs
This commit is contained in:
parent
dcb1602752
commit
756d73d2cf
@ -39,6 +39,10 @@ public class QREnrollmentPayload implements Serializable {
|
||||
"invalidation occurs.", required = true)
|
||||
private List<String> invalidPlatformConfigs;
|
||||
|
||||
@ApiModelProperty(name = "optionalPlatformConfigs", value = "Optional platform configs to show when an " +
|
||||
"values are not set.")
|
||||
private List<String> optionalPlatformConfigs;
|
||||
|
||||
public Map<String, Object> getPayload() {
|
||||
return payload;
|
||||
}
|
||||
@ -54,4 +58,12 @@ public class QREnrollmentPayload implements Serializable {
|
||||
public void setInvalidPlatformConfigs(List<String> invalidPlatformConfigs) {
|
||||
this.invalidPlatformConfigs = invalidPlatformConfigs;
|
||||
}
|
||||
|
||||
public List<String> getOptionalPlatformConfigs() {
|
||||
return optionalPlatformConfigs;
|
||||
}
|
||||
|
||||
public void setOptionalPlatformConfigs(List<String> optionalPlatformConfigs) {
|
||||
this.optionalPlatformConfigs = optionalPlatformConfigs;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user