Removed unsupported roleName parameter from device API

This commit is contained in:
harshanl 2016-08-15 13:59:30 +05:30
parent 671ba46fae
commit a7d7c689e8
2 changed files with 0 additions and 7 deletions

View File

@ -113,12 +113,6 @@ public interface DeviceManagementService {
required = false)
@QueryParam("user")
String user,
@ApiParam(
name = "roleName",
value = "Role name of the devices to be fetched.",
required = false)
@QueryParam("roleName")
String roleName,
@ApiParam(
name = "ownership",
allowableValues = "BYOD, COPE",

View File

@ -65,7 +65,6 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
@QueryParam("name") String name,
@QueryParam("type") String type,
@QueryParam("user") String user,
@QueryParam("roleName") String roleName,
@QueryParam("ownership") String ownership,
@QueryParam("status") String status,
@QueryParam("since") String since,