Update api paths with a leading forward slash

merge-requests/418/head
Yohan Avishke 5 years ago
parent 2692c40467
commit 5ff23bec02

@ -487,7 +487,7 @@ public interface DeviceTypeManagementAdminService {
@PUT
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@Path("{deviceTypeName}/versions")
@Path("/{deviceTypeName}/versions")
@ApiOperation(
produces = MediaType.APPLICATION_JSON,
httpMethod = "PUT",
@ -541,7 +541,7 @@ public interface DeviceTypeManagementAdminService {
@DELETE
@Path("{deviceTypeName}/versions/{version}")
@Path("/{deviceTypeName}/versions/{version}")
@ApiOperation(
produces = MediaType.APPLICATION_JSON,
httpMethod = "DELETE",
@ -594,7 +594,7 @@ public interface DeviceTypeManagementAdminService {
@DELETE
@Path("{deviceTypeName}/delete")
@Path("/{deviceTypeName}/delete")
@ApiOperation(
httpMethod = "DELETE",
value = "Delete device type.",

@ -188,7 +188,7 @@ public class DeviceTypeManagementAdminServiceImpl implements DeviceTypeManagemen
@Override
@POST
@Path("{deviceTypeName}/versions")
@Path("/{deviceTypeName}/versions")
public Response addDeviceTypeVersion(@PathParam("deviceTypeName") String deviceTypeName,
DeviceTypeVersionWrapper versionWrapper) {
if (versionWrapper != null && deviceTypeName != null && !deviceTypeName.isEmpty()
@ -245,7 +245,7 @@ public class DeviceTypeManagementAdminServiceImpl implements DeviceTypeManagemen
@Override
@PUT
@Path("{deviceTypeName}/versions")
@Path("/{deviceTypeName}/versions")
public Response updateDeviceTypeVersion(@PathParam("deviceTypeName") String deviceTypeName,
DeviceTypeVersionWrapper deviceTypeVersion) {
if (deviceTypeVersion != null && deviceTypeVersion.getVersionName() == null || deviceTypeVersion
@ -285,7 +285,7 @@ public class DeviceTypeManagementAdminServiceImpl implements DeviceTypeManagemen
@Override
@DELETE
@Path("{deviceTypeName}/versions/{version}")
@Path("/{deviceTypeName}/versions/{version}")
public Response deleteDeviceTypeVersion(@PathParam("deviceTypeName") String deviceTypeName,
@PathParam("version") String version) {
if (version == null || version.isEmpty()) {
@ -320,7 +320,7 @@ public class DeviceTypeManagementAdminServiceImpl implements DeviceTypeManagemen
@Override
@DELETE
@Path("{deviceTypeName}/delete")
@Path("/{deviceTypeName}/delete")
public Response deleteDeviceType(@PathParam("deviceTypeName") String deviceTypeName) {
try {
DeviceManagementProviderService deviceManagementProviderService =

Loading…
Cancel
Save