Update api paths with a leading forward slash

feature/appm-store/pbac
Yohan Avishke 5 years ago
parent 2692c40467
commit 5ff23bec02

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

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

Loading…
Cancel
Save