API: update url field max length

This commit is contained in:
Marc-Aurèle Brothier 2016-05-27 08:38:24 +02:00
parent d0453fc296
commit bded5e98ec
9 changed files with 9 additions and 6 deletions

View File

@ -49,7 +49,7 @@ public class AddImageStoreCmd extends BaseCmd {
@Parameter(name = ApiConstants.NAME, type = CommandType.STRING, description = "the name for the image store")
private String name;
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, description = "the URL for the image store")
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, length = 2048, description = "the URL for the image store")
private String url;
@Parameter(name = ApiConstants.ZONE_ID, type = CommandType.UUID, entityType = ZoneResponse.class, description = "the Zone ID for the image store")

View File

@ -45,7 +45,7 @@ public class CreateSecondaryStagingStoreCmd extends BaseCmd {
//////////////// API parameters /////////////////////
/////////////////////////////////////////////////////
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = true, description = "the URL for the staging store")
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = true, length = 2048, description = "the URL for the staging store")
private String url;
@Parameter(name = ApiConstants.ZONE_ID, type = CommandType.UUID, entityType = ZoneResponse.class, description = "the Zone ID for the staging store")

View File

@ -49,7 +49,7 @@ public class ExtractIsoCmd extends BaseAsyncCmd {
@Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = TemplateResponse.class, required = true, description = "the ID of the ISO file")
private Long id;
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = false, description = "the URL to which the ISO would be extracted")
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = false, length = 2048, description = "the URL to which the ISO would be extracted")
private String url;
@Parameter(name = ApiConstants.ZONE_ID,

View File

@ -78,7 +78,7 @@ public class RegisterIsoCmd extends BaseCmd {
description = "the ID of the OS type that best represents the OS of this ISO. If the ISO is bootable this parameter needs to be passed")
private Long osTypeId;
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = true, description = "the URL to where the ISO is currently being hosted")
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = true, length = 2048, description = "the URL to where the ISO is currently being hosted")
private String url;
@Parameter(name=ApiConstants.ZONE_ID, type=CommandType.UUID, entityType = ZoneResponse.class,

View File

@ -113,6 +113,7 @@ public class CreateTemplateCmd extends BaseAsyncCreateCmd {
@Parameter(name = ApiConstants.URL,
type = CommandType.STRING,
length = 2048,
description = "Optional, only for baremetal hypervisor. The directory name where template stored on CIFS server")
private String url;

View File

@ -49,7 +49,7 @@ public class ExtractTemplateCmd extends BaseAsyncCmd {
@Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = TemplateResponse.class, required = true, description = "the ID of the template")
private Long id;
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = false, description = "the url to which the ISO would be extracted")
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = false, length = 2048, description = "the url to which the ISO would be extracted")
private String url;
@Parameter(name = ApiConstants.ZONE_ID,

View File

@ -104,6 +104,7 @@ public class RegisterTemplateCmd extends BaseCmd {
@Parameter(name = ApiConstants.URL,
type = CommandType.STRING,
required = true,
length = 2048,
description = "the URL of where the template is hosted. Possible URL include http:// and https://")
private String url;

View File

@ -54,7 +54,7 @@ public class ExtractVolumeCmd extends BaseAsyncCmd {
required=true, description="the ID of the volume")
private Long id;
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = false, description = "the url to which the volume would be extracted")
@Parameter(name = ApiConstants.URL, type = CommandType.STRING, required = false, length = 2048, description = "the url to which the volume would be extracted")
private String url;
@Parameter(name = ApiConstants.ZONE_ID,

View File

@ -62,6 +62,7 @@ public class UploadVolumeCmd extends BaseAsyncCmd {
@Parameter(name = ApiConstants.URL,
type = CommandType.STRING,
required = true,
length = 2048,
description = "the URL of where the volume is hosted. Possible URL include http:// and https://")
private String url;