aboutsummaryrefslogtreecommitdiffstats
path: root/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507
diff options
context:
space:
mode:
Diffstat (limited to 'aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507')
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Flavor.java122
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Host.java122
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Image.java237
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/IpAddress.java168
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Relationship.java147
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipDatum.java124
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipList.java101
-rw-r--r--aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/VServer.java262
8 files changed, 0 insertions, 1283 deletions
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Flavor.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Flavor.java
deleted file mode 100644
index fe32b88..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Flavor.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.HashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "flavorId",
- "flavorName",
- "flavorLink"
-})
-public class Flavor {
-
- @JsonProperty("flavorId")
- private String flavorId;
- @JsonProperty("flavorName")
- private String flavorName;
- @JsonProperty("flavorLink")
- private String flavorLink;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The flavorId
- */
- @JsonProperty("flavorId")
- public String getFlavorId() {
- return flavorId;
- }
-
- /**
- *
- * @param flavorId
- * The flavorId
- */
- @JsonProperty("flavorId")
- public void setFlavorId(String flavorId) {
- this.flavorId = flavorId;
- }
-
- /**
- *
- * @return
- * The flavorName
- */
- @JsonProperty("flavorName")
- public String getFlavorName() {
- return flavorName;
- }
-
- /**
- *
- * @param flavorName
- * The flavorName
- */
- @JsonProperty("flavorName")
- public void setFlavorName(String flavorName) {
- this.flavorName = flavorName;
- }
-
- /**
- *
- * @return
- * The flavorLink
- */
- @JsonProperty("flavorLink")
- public String getFlavorLink() {
- return flavorLink;
- }
-
- /**
- *
- * @param flavorLink
- * The flavorLink
- */
- @JsonProperty("flavorLink")
- public void setFlavorLink(String flavorLink) {
- this.flavorLink = flavorLink;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Host.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Host.java
deleted file mode 100644
index 6b0c180..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Host.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.HashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "hostId",
- "hostname",
- "hostLoc"
-})
-public class Host {
-
- @JsonProperty("hostId")
- private String hostId;
- @JsonProperty("hostname")
- private String hostname;
- @JsonProperty("hostLoc")
- private String hostLoc;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The hostId
- */
- @JsonProperty("hostId")
- public String getHostId() {
- return hostId;
- }
-
- /**
- *
- * @param hostId
- * The hostId
- */
- @JsonProperty("hostId")
- public void setHostId(String hostId) {
- this.hostId = hostId;
- }
-
- /**
- *
- * @return
- * The hostname
- */
- @JsonProperty("hostname")
- public String getHostname() {
- return hostname;
- }
-
- /**
- *
- * @param hostname
- * The hostname
- */
- @JsonProperty("hostname")
- public void setHostname(String hostname) {
- this.hostname = hostname;
- }
-
- /**
- *
- * @return
- * The hostLoc
- */
- @JsonProperty("hostLoc")
- public String getHostLoc() {
- return hostLoc;
- }
-
- /**
- *
- * @param hostLoc
- * The hostLoc
- */
- @JsonProperty("hostLoc")
- public void setHostLoc(String hostLoc) {
- this.hostLoc = hostLoc;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Image.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Image.java
deleted file mode 100644
index b222e02..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Image.java
+++ /dev/null
@@ -1,237 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.HashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "imageId",
- "imageName",
- "osType",
- "osVersion",
- "application",
- "applicationVersion",
- "applicationVendor",
- "imageLink"
-})
-public class Image {
-
- @JsonProperty("imageId")
- private String imageId;
- @JsonProperty("imageName")
- private String imageName;
- @JsonProperty("osType")
- private String osType;
- @JsonProperty("osVersion")
- private String osVersion;
- @JsonProperty("application")
- private String application;
- @JsonProperty("applicationVersion")
- private String applicationVersion;
- @JsonProperty("applicationVendor")
- private String applicationVendor;
- @JsonProperty("imageLink")
- private String imageLink;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The imageId
- */
- @JsonProperty("imageId")
- public String getImageId() {
- return imageId;
- }
-
- /**
- *
- * @param imageId
- * The imageId
- */
- @JsonProperty("imageId")
- public void setImageId(String imageId) {
- this.imageId = imageId;
- }
-
- /**
- *
- * @return
- * The imageName
- */
- @JsonProperty("imageName")
- public String getImageName() {
- return imageName;
- }
-
- /**
- *
- * @param imageName
- * The imageName
- */
- @JsonProperty("imageName")
- public void setImageName(String imageName) {
- this.imageName = imageName;
- }
-
- /**
- *
- * @return
- * The osType
- */
- @JsonProperty("osType")
- public String getOsType() {
- return osType;
- }
-
- /**
- *
- * @param osType
- * The osType
- */
- @JsonProperty("osType")
- public void setOsType(String osType) {
- this.osType = osType;
- }
-
- /**
- *
- * @return
- * The osVersion
- */
- @JsonProperty("osVersion")
- public String getOsVersion() {
- return osVersion;
- }
-
- /**
- *
- * @param osVersion
- * The osVersion
- */
- @JsonProperty("osVersion")
- public void setOsVersion(String osVersion) {
- this.osVersion = osVersion;
- }
-
- /**
- *
- * @return
- * The application
- */
- @JsonProperty("application")
- public String getApplication() {
- return application;
- }
-
- /**
- *
- * @param application
- * The application
- */
- @JsonProperty("application")
- public void setApplication(String application) {
- this.application = application;
- }
-
- /**
- *
- * @return
- * The applicationVersion
- */
- @JsonProperty("applicationVersion")
- public String getApplicationVersion() {
- return applicationVersion;
- }
-
- /**
- *
- * @param applicationVersion
- * The applicationVersion
- */
- @JsonProperty("applicationVersion")
- public void setApplicationVersion(String applicationVersion) {
- this.applicationVersion = applicationVersion;
- }
-
- /**
- *
- * @return
- * The applicationVendor
- */
- @JsonProperty("applicationVendor")
- public String getApplicationVendor() {
- return applicationVendor;
- }
-
- /**
- *
- * @param applicationVendor
- * The applicationVendor
- */
- @JsonProperty("applicationVendor")
- public void setApplicationVendor(String applicationVendor) {
- this.applicationVendor = applicationVendor;
- }
-
- /**
- *
- * @return
- * The imageLink
- */
- @JsonProperty("imageLink")
- public String getImageLink() {
- return imageLink;
- }
-
- /**
- *
- * @param imageLink
- * The imageLink
- */
- @JsonProperty("imageLink")
- public void setImageLink(String imageLink) {
- this.imageLink = imageLink;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/IpAddress.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/IpAddress.java
deleted file mode 100644
index beec43f..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/IpAddress.java
+++ /dev/null
@@ -1,168 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.HashMap;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "addrId",
- "addr",
- "version",
- "type",
- "networkName"
-})
-public class IpAddress {
-
- @JsonProperty("addrId")
- private String addrId;
- @JsonProperty("addr")
- private String addr;
- @JsonProperty("version")
- private String version;
- @JsonProperty("type")
- private String type;
- @JsonProperty("networkName")
- private String networkName;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The addrId
- */
- @JsonProperty("addrId")
- public String getAddrId() {
- return addrId;
- }
-
- /**
- *
- * @param addrId
- * The addrId
- */
- @JsonProperty("addrId")
- public void setAddrId(String addrId) {
- this.addrId = addrId;
- }
-
- /**
- *
- * @return
- * The addr
- */
- @JsonProperty("addr")
- public String getAddr() {
- return addr;
- }
-
- /**
- *
- * @param addr
- * The addr
- */
- @JsonProperty("addr")
- public void setAddr(String addr) {
- this.addr = addr;
- }
-
- /**
- *
- * @return
- * The version
- */
- @JsonProperty("version")
- public String getVersion() {
- return version;
- }
-
- /**
- *
- * @param version
- * The version
- */
- @JsonProperty("version")
- public void setVersion(String version) {
- this.version = version;
- }
-
- /**
- *
- * @return
- * The type
- */
- @JsonProperty("type")
- public String getType() {
- return type;
- }
-
- /**
- *
- * @param type
- * The type
- */
- @JsonProperty("type")
- public void setType(String type) {
- this.type = type;
- }
-
- /**
- *
- * @return
- * The networkName
- */
- @JsonProperty("networkName")
- public String getNetworkName() {
- return networkName;
- }
-
- /**
- *
- * @param networkName
- * The networkName
- */
- @JsonProperty("networkName")
- public void setNetworkName(String networkName) {
- this.networkName = networkName;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Relationship.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Relationship.java
deleted file mode 100644
index 052e330..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/Relationship.java
+++ /dev/null
@@ -1,147 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "relatedTo",
- "relatedLink",
- "relationshipData",
- "any"
-})
-public class Relationship {
-
- @JsonProperty("relatedTo")
- private String relatedTo;
- @JsonProperty("relatedLink")
- private String relatedLink;
- @JsonProperty("relationshipData")
- private List<RelationshipDatum> relationshipData = new ArrayList<RelationshipDatum>();
- @JsonProperty("any")
- private List<Object> any = new ArrayList<Object>();
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The relatedTo
- */
- @JsonProperty("relatedTo")
- public String getRelatedTo() {
- return relatedTo;
- }
-
- /**
- *
- * @param relatedTo
- * The relatedTo
- */
- @JsonProperty("relatedTo")
- public void setRelatedTo(String relatedTo) {
- this.relatedTo = relatedTo;
- }
-
- /**
- *
- * @return
- * The relatedLink
- */
- @JsonProperty("relatedLink")
- public String getRelatedLink() {
- return relatedLink;
- }
-
- /**
- *
- * @param relatedLink
- * The relatedLink
- */
- @JsonProperty("relatedLink")
- public void setRelatedLink(String relatedLink) {
- this.relatedLink = relatedLink;
- }
-
- /**
- *
- * @return
- * The relationshipData
- */
- @JsonProperty("relationshipData")
- public List<RelationshipDatum> getRelationshipData() {
- return relationshipData;
- }
-
- /**
- *
- * @param relationshipData
- * The relationshipData
- */
- @JsonProperty("relationshipData")
- public void setRelationshipData(List<RelationshipDatum> relationshipData) {
- this.relationshipData = relationshipData;
- }
-
- /**
- *
- * @return
- * The any
- */
- @JsonProperty("any")
- public List<Object> getAny() {
- return any;
- }
-
- /**
- *
- * @param any
- * The any
- */
- @JsonProperty("any")
- public void setAny(List<Object> any) {
- this.any = any;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipDatum.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipDatum.java
deleted file mode 100644
index b2d42ff..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipDatum.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "relationshipKey",
- "relationshipValue",
- "any"
-})
-public class RelationshipDatum {
-
- @JsonProperty("relationshipKey")
- private String relationshipKey;
- @JsonProperty("relationshipValue")
- private String relationshipValue;
- @JsonProperty("any")
- private List<Object> any = new ArrayList<Object>();
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The relationshipKey
- */
- @JsonProperty("relationshipKey")
- public String getRelationshipKey() {
- return relationshipKey;
- }
-
- /**
- *
- * @param relationshipKey
- * The relationshipKey
- */
- @JsonProperty("relationshipKey")
- public void setRelationshipKey(String relationshipKey) {
- this.relationshipKey = relationshipKey;
- }
-
- /**
- *
- * @return
- * The relationshipValue
- */
- @JsonProperty("relationshipValue")
- public String getRelationshipValue() {
- return relationshipValue;
- }
-
- /**
- *
- * @param relationshipValue
- * The relationshipValue
- */
- @JsonProperty("relationshipValue")
- public void setRelationshipValue(String relationshipValue) {
- this.relationshipValue = relationshipValue;
- }
-
- /**
- *
- * @return
- * The any
- */
- @JsonProperty("any")
- public List<Object> getAny() {
- return any;
- }
-
- /**
- *
- * @param any
- * The any
- */
- @JsonProperty("any")
- public void setAny(List<Object> any) {
- this.any = any;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipList.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipList.java
deleted file mode 100644
index 5f2ca6c..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/RelationshipList.java
+++ /dev/null
@@ -1,101 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "relationship",
- "any"
-})
-public class RelationshipList {
-
- @JsonProperty("relationship")
- private List<Relationship> relationship = new ArrayList<Relationship>();
- @JsonProperty("any")
- private List<Object> any = new ArrayList<Object>();
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The relationship
- */
- @JsonProperty("relationship")
- public List<Relationship> getRelationship() {
- return relationship;
- }
-
- /**
- *
- * @param relationship
- * The relationship
- */
- @JsonProperty("relationship")
- public void setRelationship(List<Relationship> relationship) {
- this.relationship = relationship;
- }
-
- /**
- *
- * @return
- * The any
- */
- @JsonProperty("any")
- public List<Object> getAny() {
- return any;
- }
-
- /**
- *
- * @param any
- * The any
- */
- @JsonProperty("any")
- public void setAny(List<Object> any) {
- this.any = any;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}
diff --git a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/VServer.java b/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/VServer.java
deleted file mode 100644
index 2ca10d4..0000000
--- a/aai-service/provider/src/main/java/org/openecomp/sdnc/sli/aai/data/v1507/VServer.java
+++ /dev/null
@@ -1,262 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * openECOMP : SDN-C
- * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- * reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-
-package org.openecomp.sdnc.sli.aai.data.v1507;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import javax.annotation.Generated;
-import com.fasterxml.jackson.annotation.JsonAnyGetter;
-import com.fasterxml.jackson.annotation.JsonAnySetter;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.fasterxml.jackson.annotation.JsonInclude;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonPropertyOrder;
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-@Generated("org.jsonschema2pojo")
-@JsonPropertyOrder({
- "vmId",
- "vmName",
- "vmName2",
- "host",
- "image",
- "flavor",
- "ipAddresses",
- "vserverLink",
- "relationshipList"
-})
-public class VServer {
-
- @JsonProperty("vmId")
- private String vmId;
- @JsonProperty("vmName")
- private String vmName;
- @JsonProperty("vmName2")
- private String vmName2;
- @JsonProperty("host")
- private Host host;
- @JsonProperty("image")
- private Image image;
- @JsonProperty("flavor")
- private Flavor flavor;
- @JsonProperty("ipAddresses")
- private List<IpAddress> ipAddresses = new ArrayList<IpAddress>();
- @JsonProperty("vserverLink")
- private String vserverLink;
- @JsonProperty("relationshipList")
- private RelationshipList relationshipList;
- @JsonIgnore
- private Map<String, Object> additionalProperties = new HashMap<String, Object>();
-
- /**
- *
- * @return
- * The vmId
- */
- @JsonProperty("vmId")
- public String getVmId() {
- return vmId;
- }
-
- /**
- *
- * @param vmId
- * The vmId
- */
- @JsonProperty("vmId")
- public void setVmId(String vmId) {
- this.vmId = vmId;
- }
-
- /**
- *
- * @return
- * The vmName
- */
- @JsonProperty("vmName")
- public String getVmName() {
- return vmName;
- }
-
- /**
- *
- * @param vmName
- * The vmName
- */
- @JsonProperty("vmName")
- public void setVmName(String vmName) {
- this.vmName = vmName;
- }
-
- /**
- *
- * @return
- * The vmName2
- */
- @JsonProperty("vmName2")
- public String getVmName2() {
- return vmName2;
- }
-
- /**
- *
- * @param vmName2
- * The vmName2
- */
- @JsonProperty("vmName2")
- public void setVmName2(String vmName2) {
- this.vmName2 = vmName2;
- }
-
- /**
- *
- * @return
- * The host
- */
- @JsonProperty("host")
- public Host getHost() {
- return host;
- }
-
- /**
- *
- * @param host
- * The host
- */
- @JsonProperty("host")
- public void setHost(Host host) {
- this.host = host;
- }
-
- /**
- *
- * @return
- * The image
- */
- @JsonProperty("image")
- public Image getImage() {
- return image;
- }
-
- /**
- *
- * @param image
- * The image
- */
- @JsonProperty("image")
- public void setImage(Image image) {
- this.image = image;
- }
-
- /**
- *
- * @return
- * The flavor
- */
- @JsonProperty("flavor")
- public Flavor getFlavor() {
- return flavor;
- }
-
- /**
- *
- * @param flavor
- * The flavor
- */
- @JsonProperty("flavor")
- public void setFlavor(Flavor flavor) {
- this.flavor = flavor;
- }
-
- /**
- *
- * @return
- * The ipAddresses
- */
- @JsonProperty("ipAddresses")
- public List<IpAddress> getIpAddresses() {
- return ipAddresses;
- }
-
- /**
- *
- * @param ipAddresses
- * The ipAddresses
- */
- @JsonProperty("ipAddresses")
- public void setIpAddresses(List<IpAddress> ipAddresses) {
- this.ipAddresses = ipAddresses;
- }
-
- /**
- *
- * @return
- * The vserverLink
- */
- @JsonProperty("vserverLink")
- public String getVserverLink() {
- return vserverLink;
- }
-
- /**
- *
- * @param vserverLink
- * The vserverLink
- */
- @JsonProperty("vserverLink")
- public void setVserverLink(String vserverLink) {
- this.vserverLink = vserverLink;
- }
-
- /**
- *
- * @return
- * The relationshipList
- */
- @JsonProperty("relationshipList")
- public RelationshipList getRelationshipList() {
- return relationshipList;
- }
-
- /**
- *
- * @param relationshipList
- * The relationshipList
- */
- @JsonProperty("relationshipList")
- public void setRelationshipList(RelationshipList relationshipList) {
- this.relationshipList = relationshipList;
- }
-
- @JsonAnyGetter
- public Map<String, Object> getAdditionalProperties() {
- return this.additionalProperties;
- }
-
- @JsonAnySetter
- public void setAdditionalProperty(String name, Object value) {
- this.additionalProperties.put(name, value);
- }
-
-}