Fix the path parameter

revert-70aa11f8
geethkokila 7 years ago
parent 5a1b4b154e
commit 7aab14c07d

@ -54,6 +54,8 @@ public class UserManagementAdminServiceImpl implements UserManagementAdminServic
return CredentialManagementResponseBuilder.buildResetPasswordResponse(user, credentials); return CredentialManagementResponseBuilder.buildResetPasswordResponse(user, credentials);
} }
@DELETE
@Path("/{username}/devices")
@Override @Override
public Response deleteDeviceOfUser(@PathParam("username") String username) { public Response deleteDeviceOfUser(@PathParam("username") String username) {
try { try {
@ -66,6 +68,8 @@ public class UserManagementAdminServiceImpl implements UserManagementAdminServic
} }
} }
@DELETE
@Path("/type/{device-type}/id/{device-id}")
@Override @Override
public Response deleteDevice(@PathParam("device-type") @Size(max = 45) String deviceType, public Response deleteDevice(@PathParam("device-type") @Size(max = 45) String deviceType,
@PathParam("device-id") @Size(max = 45) String deviceId) { @PathParam("device-id") @Size(max = 45) String deviceId) {

Loading…
Cancel
Save