Resolve comments

pull/250/head
Pramila Niroshan 11 months ago
parent 2453459882
commit 451b7a292e

@ -73,6 +73,7 @@ import java.util.List;
public interface DeviceStatusFilterService {
@GET
@Path("/{device-type}")
@ApiOperation(
httpMethod = HTTPConstants.HEADER_GET,
value = "Get device status filters",
@ -111,7 +112,7 @@ public interface DeviceStatusFilterService {
Response getDeviceStatusFilters( @ApiParam(
name = "deviceType",
value = "The device type.",
required = true) @QueryParam("device-type") String deviceType);
required = true) @PathParam ("device-type") String deviceType);
@GET
@Path("/is-enabled")
@ -154,7 +155,7 @@ public interface DeviceStatusFilterService {
Response getDeviceStatusCheck();
@PUT
@Path("/is-enabled")
@Path("/toggle-device-status")
@ApiOperation(
produces = MediaType.APPLICATION_JSON,
httpMethod = HTTPConstants.HEADER_POST,

Loading…
Cancel
Save