Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • osl/code/org.etsi.osl.model.tmf
1 result
Show changes
Commits on Source (5)
Showing
with 2 additions and 74 deletions
......@@ -64,7 +64,6 @@ public class AttachmentRefFVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getAtType() {
return type;
}
......@@ -84,7 +83,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -104,7 +102,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -124,7 +121,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "href", description = "Hyperlink reference", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("href")
public String getHref() {
return href;
}
......@@ -144,7 +140,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "id", description = "unique identifier", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("id")
public String getId() {
return id;
}
......@@ -164,7 +159,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "name", description = "Name of the referred entity.", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("name")
public String getName() {
return name;
}
......@@ -184,7 +178,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "@referredType", description = "The actual type of the target instance when needed for disambiguation.", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@referredType")
public String getReferredType() {
return referredType;
}
......@@ -204,7 +197,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "description", description = "A narrative text describing the content of the attachment", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("description")
public String getDescription() {
return description;
}
......@@ -224,7 +216,6 @@ public class AttachmentRefFVO {
*/
@Schema(name = "url", description = "Link to the attachment media/content", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("url")
public String getUrl() {
return url;
}
......
......@@ -64,7 +64,6 @@ public class AttachmentRefMVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -84,7 +83,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getAtBaseType() {
return baseType;
}
......@@ -104,7 +102,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -124,7 +121,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "href", description = "Hyperlink reference", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("href")
public String getHref() {
return href;
}
......@@ -144,7 +140,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "id", description = "The identifier of the referred entity.", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("id")
public String getId() {
return id;
}
......@@ -164,7 +159,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "name", description = "Name of the referred entity.", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("name")
public String getName() {
return name;
}
......@@ -184,7 +178,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "@referredType", description = "The actual type of the target instance when needed for disambiguation.", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@referredType")
public String getReferredType() {
return referredType;
}
......@@ -204,7 +197,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "description", description = "A narrative text describing the content of the attachment", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("description")
public String getDescription() {
return description;
}
......@@ -224,7 +216,6 @@ public class AttachmentRefMVO {
*/
@Schema(name = "url", description = "Link to the attachment media/content", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("url")
public String getUrl() {
return url;
}
......
......@@ -55,7 +55,6 @@ public class Characteristic extends BaseRootNamedEntity {
*/
@Schema(name = "valueType", description = "Data type of the value of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("valueType")
public String getValueType() {
return valueType;
}
......@@ -83,7 +82,6 @@ public class Characteristic extends BaseRootNamedEntity {
*/
@Valid
@Schema(name = "characteristicRelationship", description = "Collection of characteristic relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("characteristicRelationship")
public List<CharacteristicRelationship> getCharacteristicRelationship() {
return characteristicRelationship;
}
......
......@@ -59,7 +59,6 @@ public class CharacteristicFVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -79,7 +78,6 @@ public class CharacteristicFVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -99,7 +97,6 @@ public class CharacteristicFVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -119,7 +116,6 @@ public class CharacteristicFVO {
*/
@Schema(name = "name", description = "Name of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("name")
public String getName() {
return name;
}
......@@ -139,7 +135,6 @@ public class CharacteristicFVO {
*/
@Schema(name = "valueType", description = "Data type of the value of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("valueType")
public String getValueType() {
return valueType;
}
......@@ -167,7 +162,6 @@ public class CharacteristicFVO {
*/
@Valid
@Schema(name = "characteristicRelationship", description = "Collection of characteristic relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("characteristicRelationship")
public List<CharacteristicRelationshipFVO> getCharacteristicRelationship() {
return characteristicRelationship;
}
......
......@@ -62,7 +62,6 @@ public class CharacteristicMVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -82,7 +81,6 @@ public class CharacteristicMVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -102,7 +100,6 @@ public class CharacteristicMVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -122,7 +119,6 @@ public class CharacteristicMVO {
*/
@Schema(name = "uuid", description = "Unique identifier of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uuid")
public String getUuid() {
return uuid;
}
......@@ -142,7 +138,6 @@ public class CharacteristicMVO {
*/
@Schema(name = "name", description = "Name of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("name")
public String getName() {
return name;
}
......@@ -162,7 +157,6 @@ public class CharacteristicMVO {
*/
@Schema(name = "valueType", description = "Data type of the value of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("valueType")
public String getValueType() {
return valueType;
}
......@@ -190,7 +184,6 @@ public class CharacteristicMVO {
*/
@Valid
@Schema(name = "characteristicRelationship", description = "Collection of characteristic relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("characteristicRelationship")
public List<CharacteristicRelationshipMVO> getCharacteristicRelationship() {
return characteristicRelationship;
}
......
......@@ -47,7 +47,6 @@ public class CharacteristicRelationship extends BaseRootEntity {
*/
@Schema(name = "relationshipType", description = "The type of relationship", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("relationshipType")
public String getRelationshipType() {
return relationshipType;
}
......
......@@ -54,7 +54,6 @@ public class CharacteristicRelationshipFVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -74,7 +73,6 @@ public class CharacteristicRelationshipFVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -94,7 +92,6 @@ public class CharacteristicRelationshipFVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -114,7 +111,6 @@ public class CharacteristicRelationshipFVO {
*/
@NotNull
@Schema(name = "uuid", description = "Unique identifier of the characteristic", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("uuid")
public String getUuid() {
return uuid;
}
......@@ -134,7 +130,6 @@ public class CharacteristicRelationshipFVO {
*/
@NotNull
@Schema(name = "relationshipType", description = "The type of relationship", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("relationshipType")
public String getRelationshipType() {
return relationshipType;
}
......
......@@ -52,7 +52,6 @@ public class CharacteristicRelationshipMVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -72,7 +71,6 @@ public class CharacteristicRelationshipMVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -92,7 +90,6 @@ public class CharacteristicRelationshipMVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -112,7 +109,6 @@ public class CharacteristicRelationshipMVO {
*/
@Schema(name = "uuid", description = "Unique identifier of the characteristic", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uuid")
public String getUuid() {
return uuid;
}
......@@ -132,7 +128,6 @@ public class CharacteristicRelationshipMVO {
*/
@Schema(name = "relationshipType", description = "The type of relationship", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("relationshipType")
public String getRelationshipType() {
return relationshipType;
}
......
......@@ -31,7 +31,6 @@ public class CompressionType {
*/
@Valid
@Schema(name = "compressionEnumType", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("compressionEnumType")
public CompressionEnumType getCompressionEnumType() {
return compressionEnumType;
}
......
......@@ -60,7 +60,6 @@ public class DataAccessEndpoint extends LogicalResource {
*/
@Valid
@Schema(name = "uri", description = "URI for using the data access API", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uri")
public URI getUri() {
return uri;
}
......@@ -80,7 +79,6 @@ public class DataAccessEndpoint extends LogicalResource {
*/
@Valid
@Schema(name = "uriQueryFilter", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uriQueryFilter")
public DataFilterMap getUriQueryFilter() {
return uriQueryFilter;
}
......@@ -100,7 +98,6 @@ public class DataAccessEndpoint extends LogicalResource {
*/
@Schema(name = "apiType", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("apiType")
public String getApiType() {
return apiType;
}
......
......@@ -53,7 +53,6 @@ public class DataAccessEndpointFVO extends LogicalResourceFVO {
*/
@Valid
@Schema(name = "uri", description = "URI for using the data access API", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uri")
public URI getUri() {
return uri;
}
......@@ -73,7 +72,6 @@ public class DataAccessEndpointFVO extends LogicalResourceFVO {
*/
@Valid
@Schema(name = "uriQueryFilter", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uriQueryFilter")
public DataFilterMapFVO getUriQueryFilter() {
return uriQueryFilter;
}
......@@ -93,7 +91,6 @@ public class DataAccessEndpointFVO extends LogicalResourceFVO {
*/
@Schema(name = "apiType", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("apiType")
public String getApiType() {
return apiType;
}
......
......@@ -53,7 +53,6 @@ public class DataAccessEndpointMVO extends LogicalResourceMVO {
*/
@Valid
@Schema(name = "uri", description = "URI for using the data access API", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uri")
public URI getUri() {
return uri;
}
......@@ -73,7 +72,6 @@ public class DataAccessEndpointMVO extends LogicalResourceMVO {
*/
@Valid
@Schema(name = "uriQueryFilter", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("uriQueryFilter")
public DataFilterMapMVO getUriQueryFilter() {
return uriQueryFilter;
}
......@@ -93,7 +91,6 @@ public class DataAccessEndpointMVO extends LogicalResourceMVO {
*/
@Schema(name = "apiType", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("apiType")
public String getApiType() {
return apiType;
}
......
......@@ -40,7 +40,6 @@ public class DataFilterAttribute {
*/
@Schema(name = "valueType", description = "Data type of the value of the attribute", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("valueType")
public String getValueType() {
return valueType;
}
......
......@@ -43,7 +43,6 @@ public class DataFilterAttributeStringArray extends DataFilterAttribute {
*/
@Schema(name = "value", example = "[\"Dallas\",\"Houston\",\"Paris\"]", description = "an array of field names", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("value")
public List<String> getValue() {
return value;
}
......
......@@ -57,7 +57,6 @@ public class DataFilterMap {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -77,7 +76,6 @@ public class DataFilterMap {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -97,7 +95,6 @@ public class DataFilterMap {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -126,7 +123,6 @@ public class DataFilterMap {
*/
@Valid
@Schema(name = "mappings", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("mappings")
public List<@Valid DataFilterMapItem> getMappings() {
return mappings;
}
......
......@@ -53,7 +53,6 @@ public class DataFilterMapFVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -73,7 +72,6 @@ public class DataFilterMapFVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -93,7 +91,6 @@ public class DataFilterMapFVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -121,7 +118,6 @@ public class DataFilterMapFVO {
*/
@Valid
@Schema(name = "mappings", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("mappings")
public List<@Valid DataFilterMapItemFVO> getMappings() {
return mappings;
}
......
......@@ -36,7 +36,6 @@ public class DataFilterMapItem {
*/
@Valid
@Schema(name = "filterTemplate", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("filterTemplate")
public DataFilterTemplate getFilterTemplate() {
return filterTemplate;
}
......@@ -56,7 +55,6 @@ public class DataFilterMapItem {
*/
@Valid
@Schema(name = "stringArray", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("stringArray")
public DataFilterAttributeStringArray getStringArray() {
return stringArray;
}
......
......@@ -34,7 +34,6 @@ public class DataFilterMapItemFVO {
*/
@Valid
@Schema(name = "filterTemplate", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("filterTemplate")
public DataFilterTemplateFVO getFilterTemplate() {
return filterTemplate;
}
......@@ -54,7 +53,6 @@ public class DataFilterMapItemFVO {
*/
@Valid
@Schema(name = "stringArray", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("stringArray")
public DataFilterAttributeStringArray getStringArray() {
return stringArray;
}
......
......@@ -17,8 +17,10 @@ import java.util.Objects;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-05-15T07:30:16.936523289Z[Etc/UTC]", comments = "Generator version: 7.6.0-SNAPSHOT")
public class DataFilterMapItemMVO {
@JsonProperty("filterTemplate")
private DataFilterTemplateMVO filterTemplate;
@JsonProperty("stringArray")
private DataFilterAttributeStringArray stringArray;
public DataFilterMapItemMVO filterTemplate(DataFilterTemplateMVO filterTemplate) {
......@@ -32,7 +34,6 @@ public class DataFilterMapItemMVO {
*/
@Valid
@Schema(name = "filterTemplate", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("filterTemplate")
public DataFilterTemplateMVO getFilterTemplate() {
return filterTemplate;
}
......@@ -52,7 +53,6 @@ public class DataFilterMapItemMVO {
*/
@Valid
@Schema(name = "stringArray", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("stringArray")
public DataFilterAttributeStringArray getStringArray() {
return stringArray;
}
......
......@@ -53,7 +53,6 @@ public class DataFilterMapMVO {
*/
@NotNull
@Schema(name = "@type", description = "When sub-classing, this defines the sub-class Extensible name", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("@type")
public String getType() {
return type;
}
......@@ -73,7 +72,6 @@ public class DataFilterMapMVO {
*/
@Schema(name = "@baseType", description = "When sub-classing, this defines the super-class", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@baseType")
public String getBaseType() {
return baseType;
}
......@@ -93,7 +91,6 @@ public class DataFilterMapMVO {
*/
@Schema(name = "@schemaLocation", description = "A URI to a JSON-Schema file that defines additional attributes and relationships", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("@schemaLocation")
public String getSchemaLocation() {
return schemaLocation;
}
......@@ -121,7 +118,6 @@ public class DataFilterMapMVO {
*/
@Valid
@Schema(name = "mappings", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
@JsonProperty("mappings")
public List<@Valid DataFilterMapItemMVO> getMappings() {
return mappings;
}
......