fixed ownership validation issue

error-msg-device-ownerships
Thilina Sandaruwan 2 years ago
parent dc20995d15
commit 3e44d502da

@ -175,12 +175,18 @@ public class RequestValidationUtil {
switch (ownership) {
case "BYOD":
case "COPE":
case "WORK_PROFILE":
case "GOOGLE_ENTERPRISE":
case "COSU":
case "FULLY_MANAGED":
case "DEDICATED_DEVICE":
return;
default:
throw new InputValidationException(
new ErrorResponse.ErrorResponseBuilder().setCode(400l).setMessage(
"Invalid ownership type received. " +
"Valid ownership types are BYOD | COPE").build());
"Valid ownership types are BYOD | COPE | WORK_PROFILE | " +
"GOOGLE_ENTERPRISE | COSU | FULLY_MANAGED | DEDICATED_DEVICE ").build());
}
}

Loading…
Cancel
Save