aboutsummaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans
diff options
context:
space:
mode:
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans')
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ActionType.java80
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ModelType.java32
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ObjectFactory.java150
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestInfo.java286
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestStatusType.java71
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelName.java261
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelNames.java103
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfInputs.java689
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfOutputs.java291
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequest.java179
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequests.java103
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfType.java148
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfTypes.java103
-rw-r--r--mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/package-info.java30
14 files changed, 0 insertions, 2526 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ActionType.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ActionType.java
deleted file mode 100644
index 2a43658a65..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ActionType.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for action-type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- * <p>
- * <pre>
- * &lt;simpleType name="action-type">
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="CREATE"/>
- * &lt;enumeration value="SETSTATUS"/>
- * &lt;enumeration value="REPLACE"/>
- * &lt;enumeration value="UPDATE"/>
- * &lt;enumeration value="DELETE"/>
- * &lt;enumeration value="CREATE_VF_MODULE"/>
- * &lt;enumeration value="UPDATE_VF_MODULE"/>
- * &lt;enumeration value="DELETE_VF_MODULE"/>
- * &lt;enumeration value="NOT_PROVIDED"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * </pre>
- *
- */
-@XmlType(name = "action-type")
-@XmlEnum
-public enum ActionType {
-
- CREATE,
- SETSTATUS,
- REPLACE,
- UPDATE,
- DELETE,
- CREATE_VF_MODULE,
- UPDATE_VF_MODULE,
- DELETE_VF_MODULE,
- NOT_PROVIDED;
-
- public String value() {
- return name();
- }
-
- public static ActionType fromValue(String v) {
- return valueOf(v);
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ModelType.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ModelType.java
deleted file mode 100644
index e3830b0c13..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ModelType.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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.mso.apihandlerinfra.vnfbeans;
-
-/*
- * Enum for Status values returned by API Handler to Tail-F
-*/
-public enum ModelType {
- service,
- vnf,
- vfModule,
- volumeGroup,
- network
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ObjectFactory.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ObjectFactory.java
deleted file mode 100644
index e77257c596..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/ObjectFactory.java
+++ /dev/null
@@ -1,150 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the org.openecomp.mso.apihandlerinfra.vnfbeans1 package.
- * <p>An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _VnfParams_QNAME = new QName("http://org.openecomp/mso/infra/vnf-request/v1", "vnf-params");
- private final static QName _NetworkParams_QNAME = new QName("http://org.openecomp/mso/infra/vnf-request/v1", "network-params");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openecomp.mso.apihandlerinfra.vnfbeans1
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link VnfInputs }
- *
- */
- public VnfInputs createVnfInputs() {
- return new VnfInputs();
- }
-
- /**
- * Create an instance of {@link RequestInfo }
- *
- */
- public RequestInfo createRequestInfo() {
- return new RequestInfo();
- }
-
- /**
- * Create an instance of {@link VnfOutputs }
- *
- */
- public VnfOutputs createVnfOutputs() {
- return new VnfOutputs();
- }
-
- /**
- * Create an instance of {@link VnfType }
- *
- */
- public VnfType createVnfType() {
- return new VnfType();
- }
-
- /**
- * Create an instance of {@link VnfRequest }
- *
- */
- public VnfRequest createVnfRequest() {
- return new VnfRequest();
- }
-
-
- /**
- * Create an instance of {@link VnfTypes }
- *
- */
- public VnfTypes createVnfTypes() {
- return new VnfTypes();
- }
-
- /**
- * Create an instance of {@link VnfRequests }
- *
- */
- public VnfRequests createVnfRequests() {
- return new VnfRequests();
- }
-
- /**
- * Create an instance of {@link VfModuleModelName }
- *
- */
- public VfModuleModelName createVfModuleModelName() {
- return new VfModuleModelName();
- }
-
- /**
- * Create an instance of {@link VfModuleModelNames }
- *
- */
- public VfModuleModelNames createVfModuleModelNames() {
- return new VfModuleModelNames();
- }
-
-
-
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Object }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "http://org.openecomp/mso/infra/vnf-request/v1", name = "vnf-params")
- public JAXBElement<Object> createVnfParams(Object value) {
- return new JAXBElement<>(_VnfParams_QNAME, Object.class, null, value);
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestInfo.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestInfo.java
deleted file mode 100644
index b80ea85dc8..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestInfo.java
+++ /dev/null
@@ -1,286 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="request-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="action" type="{http://org.openecomp/mso/infra/vnf-request/v1}action-type"/>
- * &lt;element name="request-status" type="{http://org.openecomp/mso/infra/vnf-request/v1}request-status-type" minOccurs="0"/>
- * &lt;element name="status-message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="progress" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- * &lt;element name="start-time" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="end-time" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "requestId",
- "action",
- "requestStatus",
- "statusMessage",
- "progress",
- "startTime",
- "endTime",
- "source"
-})
-@XmlRootElement(name = "request-info")
-public class RequestInfo {
-
- @XmlElement(name = "request-id")
- protected String requestId;
- @XmlElement(required = true)
- protected ActionType action;
- @XmlElement(name = "request-status")
- protected RequestStatusType requestStatus;
- @XmlElement(name = "status-message")
- protected String statusMessage;
- protected Integer progress;
- @XmlElement(name = "start-time")
- protected String startTime;
- @XmlElement(name = "end-time")
- protected String endTime;
- protected String source;
-
- /**
- * Gets the value of the requestId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRequestId() {
- return requestId;
- }
-
- /**
- * Sets the value of the requestId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRequestId(String value) {
- this.requestId = value;
- }
-
- /**
- * Gets the value of the action property.
- *
- * @return
- * possible object is
- * {@link ActionType }
- *
- */
- public ActionType getAction() {
- return action;
- }
-
- /**
- * Sets the value of the action property.
- *
- * @param value
- * allowed object is
- * {@link ActionType }
- *
- */
- public void setAction(ActionType value) {
- this.action = value;
- }
-
- /**
- * Gets the value of the requestStatus property.
- *
- * @return
- * possible object is
- * {@link RequestStatusType }
- *
- */
- public RequestStatusType getRequestStatus() {
- return requestStatus;
- }
-
- /**
- * Sets the value of the requestStatus property.
- *
- * @param value
- * allowed object is
- * {@link RequestStatusType }
- *
- */
- public void setRequestStatus(RequestStatusType value) {
- this.requestStatus = value;
- }
-
- /**
- * Gets the value of the statusMessage property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getStatusMessage() {
- return statusMessage;
- }
-
- /**
- * Sets the value of the statusMessage property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setStatusMessage(String value) {
- this.statusMessage = value;
- }
-
- /**
- * Gets the value of the progress property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getProgress() {
- return progress;
- }
-
- /**
- * Sets the value of the progress property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setProgress(Integer value) {
- this.progress = value;
- }
-
- /**
- * Gets the value of the startTime property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getStartTime() {
- return startTime;
- }
-
- /**
- * Sets the value of the startTime property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setStartTime(String value) {
- this.startTime = value;
- }
-
- /**
- * Gets the value of the endTime property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getEndTime() {
- return endTime;
- }
-
- /**
- * Sets the value of the endTime property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setEndTime(String value) {
- this.endTime = value;
- }
-
- /**
- * Gets the value of the source property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getSource() {
- return source;
- }
-
- /**
- * Sets the value of the source property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setSource(String value) {
- this.source = value;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestStatusType.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestStatusType.java
deleted file mode 100644
index 1e4cdddc4a..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/RequestStatusType.java
+++ /dev/null
@@ -1,71 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for request-status-type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- * <p>
- * <pre>
- * &lt;simpleType name="request-status-type">
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="COMPLETE"/>
- * &lt;enumeration value="FAILED"/>
- * &lt;enumeration value="IN_PROGRESS"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * </pre>
- *
- */
-@XmlType(name = "request-status-type")
-@XmlEnum
-public enum RequestStatusType {
-
- COMPLETE,
- FAILED,
- IN_PROGRESS,
- PENDING,
- TIMEOUT,
- UNLOCKED;
-
- public String value() {
- return name();
- }
-
- public static RequestStatusType fromValue(String v) {
- return valueOf(v);
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelName.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelName.java
deleted file mode 100644
index a18ef86b58..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelName.java
+++ /dev/null
@@ -1,261 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="model-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="model-invariant-uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="is-base" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
- * &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="asdc-service-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "modelName",
- "modelVersion",
- "modelInvariantUuid",
- "isBase",
- "id",
- "description",
- "asdcServiceModelVersion"
-})
-@XmlRootElement(name = "vf-module-model-name")
-public class VfModuleModelName {
-
- @XmlElement(name="model-name", required = true)
- protected String modelName;
- @XmlElement(name="model-version", required = true)
- protected String modelVersion;
- @XmlElement(name="model-invariant-uuid", required = true)
- protected String modelInvariantUuid;
- @XmlElement(name="is-base", required = true)
- protected Boolean isBase;
- @XmlElement(name="id", required = true)
- protected String id;
- @XmlElement(name="description", required = true)
- protected String description;
- @XmlElement(name="asdc-service-model-version", required = true)
- protected String asdcServiceModelVersion;
-
- /**
- * Gets the value of the modelName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getModelName() {
- return modelName;
- }
-
- /**
- * Sets the value of the modelName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setModelName(String value) {
- this.modelName = value;
- }
-
- /**
- * Gets the value of the modelVersion property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getModelVersion() {
- return modelVersion;
- }
-
- /**
- * Sets the value of the modelVersion property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setModelVersion(String value) {
- this.modelVersion = value;
- }
-
- /**
- * Gets the value of the modelInvariantUuid property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getModelInvariantUuid() {
- return modelInvariantUuid;
- }
-
- /**
- * Sets the value of the modelInvariantUuid property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setModelInvariantUuid(String value) {
- this.modelInvariantUuid = value;
- }
-
- /**
- * Gets the value of the isBase property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean getIsBase() {
- return isBase;
- }
-
- /**
- * Sets the value of the isBase property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setIsBase(Boolean value) {
- this.isBase = value;
- }
-
- /**
- * Gets the value of the id property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getId() {
- return id;
- }
-
- /**
- * Sets the value of the id property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setId(String value) {
- this.id = value;
- }
-
- /**
- * Gets the value of the description property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDescription() {
- return description;
- }
-
- /**
- * Sets the value of the description property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDescription(String value) {
- this.description = value;
- }
-
- /**
- * Gets the value of the asdcServiceModelVersion property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getAsdcServiceModelVersion() {
- return asdcServiceModelVersion;
- }
-
- /**
- * Sets the value of the asdcServiceModelVersion property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setAsdcServiceModelVersion(String value) {
- this.asdcServiceModelVersion = value;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelNames.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelNames.java
deleted file mode 100644
index 0a841e99a1..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VfModuleModelNames.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vf-module-model-name" maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "vfModuleModelName"
-})
-@XmlRootElement(name = "vf-module-model-names")
-public class VfModuleModelNames {
-
- @XmlElement(name = "vf-module-model-name")
- protected List<VfModuleModelName> vfModuleModelName;
-
- /**
- * Gets the value of the vfModuleModelName property.
- *
- * <p>
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a <CODE>set</CODE> method for the vnfType property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getVfModuleModelName().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link VfModuleModelName }
- *
- *
- */
- public List<VfModuleModelName> getVfModuleModelName() {
- if (vfModuleModelName == null) {
- vfModuleModelName = new ArrayList<>();
- }
- return this.vfModuleModelName;
- }
-
- public void setVfModuleModelName(List<VfModuleModelName> vfModuleModelName) {
- this.vfModuleModelName=vfModuleModelName;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfInputs.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfInputs.java
deleted file mode 100644
index 58f8a5341e..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfInputs.java
+++ /dev/null
@@ -1,689 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="vnf-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vf-module-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vnf-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vf-module-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vnf-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vf-module-model-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="asdc-service-model-version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="service-instance-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="backout-on-failure" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
- * &lt;choice>
- * &lt;element name="service-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="service-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;/choice>
- * &lt;choice>
- * &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="aic-cloud-region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;/choice>
- * &lt;element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="prov-status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="volume-group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="volume-group-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="persona-model-id" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
- * &lt;element name="persona-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
- * &lt;element name="is-base-vf-module" type="{http://www.w3.org/2001/XMLSchema}Boolean"/ minOccurs="0">
- * &lt;element name="vnf-persona-model-id" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
- * &lt;element name="vnf-persona-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "vnfId",
- "vfModuleId",
- "vnfName",
- "vfModuleName",
- "vnfType",
- "vfModuleModelName",
- "asdcServiceModelVersion",
- "serviceInstanceId",
- "backoutOnFailure",
- "serviceType",
- "serviceId",
- "aicNodeClli",
- "aicCloudRegion",
- "tenantId",
- "provStatus",
- "volumeGroupName",
- "volumeGroupId",
- // BEGIN - elements valid only on BPMN interface
- "personaModelId",
- "personaModelVersion",
- "isBaseVfModule",
- "vnfPersonaModelId",
- "vnfPersonaModelVersion"
- // END - elements valid only on BPMN interface
-})
-@XmlRootElement(name = "vnf-inputs")
-public class VnfInputs {
-
- @XmlElement(name = "vnf-id")
- protected String vnfId;
- @XmlElement(name = "vf-module-id")
- protected String vfModuleId;
- @XmlElement(name = "vnf-name")
- protected String vnfName;
- @XmlElement(name = "vf-module-name")
- protected String vfModuleName;
- @XmlElement(name = "vnf-type")
- protected String vnfType;
- @XmlElement(name = "vf-module-model-name")
- protected String vfModuleModelName;
- @XmlElement(name = "asdc-service-model-version")
- protected String asdcServiceModelVersion;
- @XmlElement(name = "service-instance-id")
- protected String serviceInstanceId;
- @XmlElement(name = "backout-on-failure")
- protected Boolean backoutOnFailure;
- @XmlElement(name = "service-type")
- protected String serviceType;
- @XmlElement(name = "service-id")
- protected String serviceId;
- @XmlElement(name = "aic-node-clli")
- protected String aicNodeClli;
- @XmlElement(name = "aic-cloud-region")
- protected String aicCloudRegion;
- @XmlElement(name = "tenant-id", required = true)
- protected String tenantId;
- @XmlElement(name = "prov-status")
- protected String provStatus;
- @XmlElement(name = "volume-group-name")
- protected String volumeGroupName;
- @XmlElement(name = "volume-group-id")
- protected String volumeGroupId;
- @XmlElement(name = "persona-model-id")
- protected String personaModelId;
- @XmlElement(name = "persona-model-version")
- protected String personaModelVersion;
- @XmlElement(name = "is-base-vf-module")
- protected Boolean isBaseVfModule;
- @XmlElement(name = "vnf-persona-model-id")
- protected String vnfPersonaModelId;
- @XmlElement(name = "vnf-persona-model-version")
- protected String vnfPersonaModelVersion;
-
- /**
- * Gets the value of the vnfId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfId() {
- return vnfId;
- }
-
- /**
- * Sets the value of the vnfId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfId(String value) {
- this.vnfId = value;
- }
-
- /**
- * Gets the value of the vnfName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfName() {
- return vnfName;
- }
-
- /**
- * Sets the value of the vnfName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfName(String value) {
- this.vnfName = value;
- }
-
- /**
- * Gets the value of the vnfType property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfType() {
- return vnfType;
- }
-
- /**
- * Sets the value of the vnfType property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfType(String value) {
- this.vnfType = value;
- }
-
- /**
- * Gets the value of the serviceInstanceId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getServiceInstanceId() {
- return serviceInstanceId;
- }
-
- /**
- * Sets the value of the serviceInstanceId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setServiceInstanceId(String value) {
- this.serviceInstanceId = value;
- }
-
- /**
- * Gets the value of the serviceType property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getServiceType() {
- return serviceType;
- }
-
- /**
- * Sets the value of the serviceType property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setServiceType(String value) {
- this.serviceType = value;
- }
-
- /**
- * Gets the value of the serviceId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getServiceId() {
- return serviceId;
- }
-
- /**
- * Sets the value of the serviceId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setServiceId (String value) {
- this.serviceId = value;
- }
-
-
- /**
- * Gets the value of the aicNodeClli property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getAicNodeClli() {
- return aicNodeClli;
- }
-
- /**
- * Sets the value of the aicNodeClli property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setAicNodeClli(String value) {
- this.aicNodeClli = value;
- }
-
- /**
- * Gets the value of the aicCloudRegion property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getAicCloudRegion() {
- return aicCloudRegion;
- }
-
- /**
- * Sets the value of the aicCloudRegion property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setAicCloudRegion(String value) {
- this.aicCloudRegion = value;
- }
-
- /**
- * Gets the value of the tenantId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTenantId() {
- return tenantId;
- }
-
- /**
- * Sets the value of the tenantId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTenantId(String value) {
- this.tenantId = value;
- }
-
- /**
- * Gets the value of the provStatus property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getProvStatus() {
- return provStatus;
- }
-
- /**
- * Sets the value of the provStatus property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setProvStatus(String value) {
- this.provStatus = value;
- }
-
- /**
- * Gets the value of the volumeGroupName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVolumeGroupName() {
- return volumeGroupName;
- }
-
- /**
- * Sets the value of the volumeGroupName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVolumeGroupName(String value) {
- this.volumeGroupName = value;
- }
-
- /**
- * Gets the value of the volumeGroupId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVolumeGroupId() {
- return volumeGroupId;
- }
-
- /**
- * Sets the value of the volumeGroupId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVolumeGroupId(String value) {
- this.volumeGroupId = value;
- }
-
- /**
- * Gets the value of the vfModuleId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVfModuleId() {
- return vfModuleId;
- }
-
- /**
- * Sets the value of the vfModuleId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVfModuleId(String value) {
- this.vfModuleId = value;
- }
-
- /**
- * Gets the value of the vfModuleName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVfModuleName() {
- return vfModuleName;
- }
-
- /**
- * Sets the value of the vfModuleName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVfModuleName(String value) {
- this.vfModuleName = value;
- }
-
- /**
- * Gets the value of the vfModuleModelName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVfModuleModelName() {
- return vfModuleModelName;
- }
-
- /**
- * Sets the value of the vfModuleModelName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVfModuleModelName(String value) {
- this.vfModuleModelName = value;
- }
-
- /**
- * Gets the value of the asdcServiceModelVersion property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getAsdcServiceModelVersion() {
- return asdcServiceModelVersion;
- }
-
- /**
- * Sets the value of the asdcServiceModelVersion property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setAsdcServiceModelVersion(String value) {
- this.asdcServiceModelVersion = value;
- }
-
- /**
- * Gets the value of the backoutOnFailure property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean getBackoutOnFailure() {
- return backoutOnFailure;
- }
-
- /**
- * Sets the value of the backoutOnFailure property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setBackoutOnFailure(Boolean value) {
- this.backoutOnFailure = value;
- }
-
- /**
- * Gets the value of the personaModelId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPersonaModelId() {
- return personaModelId;
- }
-
- /**
- * Sets the value of the personaModelId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPersonaModelId(String value) {
- this.personaModelId = value;
- }
-
- /**
- * Gets the value of the personaModelVersion property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPersonaModelVersion() {
- return personaModelVersion;
- }
-
- /**
- * Sets the value of the personaModelVersion property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPersonaModelVersion(String value) {
- this.personaModelVersion = value;
- }
-
-
- /**
- * Gets the value of the isBaseVfModule property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean getIsBaseVfModule() {
- return isBaseVfModule;
- }
-
- /**
- * Sets the value of the isBaseVfModule property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setIsBaseVfModule(Boolean value) {
- this.isBaseVfModule = value;
- }
-
- /**
- * Gets the value of the vnfPersonaModelId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfPersonaModelId() {
- return vnfPersonaModelId;
- }
-
- /**
- * Sets the value of the vnfPersonaModelId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfPersonaModelId(String value) {
- this.vnfPersonaModelId = value;
- }
-
- /**
- * Gets the value of the vnfPersonaModelVersion property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfPersonaModelVersion() {
- return vnfPersonaModelVersion;
- }
-
- /**
- * Sets the value of the vnfPersonaModelVersion property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfPersonaModelVersion(String value) {
- this.vnfPersonaModelVersion = value;
- }
-
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfOutputs.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfOutputs.java
deleted file mode 100644
index 3cd5474182..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfOutputs.java
+++ /dev/null
@@ -1,291 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="vnf-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vf-module-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vnf-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="vf-module-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="volume-group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="volume-group-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "vnfId",
- "vfModuleId",
- "vnfName",
- "vfModuleName",
- "aicNodeClli",
- "tenantId",
- "volumeGroupName",
- "volumeGroupId"
-})
-@XmlRootElement(name = "vnf-outputs")
-public class VnfOutputs {
-
- @XmlElement(name = "vnf-id", required = true)
- protected String vnfId;
- @XmlElement(name = "vf-module-id")
- protected String vfModuleId;
- @XmlElement(name = "vnf-name", required = true)
- protected String vnfName;
- @XmlElement(name = "vf-module-name", required = true)
- protected String vfModuleName;
- @XmlElement(name = "aic-node-clli", required = true)
- protected String aicNodeClli;
- @XmlElement(name = "tenant-id", required = true)
- protected String tenantId;
- @XmlElement(name = "volume-group-name")
- protected String volumeGroupName;
- @XmlElement(name = "volume-group-id")
- protected String volumeGroupId;
-
- /**
- * Gets the value of the vnfId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfId() {
- return vnfId;
- }
-
- /**
- * Sets the value of the vnfId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfId(String value) {
- this.vnfId = value;
- }
-
- /**
- * Gets the value of the vfModuleId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVfModuleId() {
- return vfModuleId;
- }
-
- /**
- * Sets the value of the vfModuleId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVfModuleId(String value) {
- this.vfModuleId = value;
- }
-
-
-
- /**
- * Gets the value of the vnfName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVnfName() {
- return vnfName;
- }
-
- /**
- * Sets the value of the vnfName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVnfName(String value) {
- this.vnfName = value;
- }
-
- /**
- * Gets the value of the vfModuleName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVfModuleName() {
- return vfModuleName;
- }
-
- /**
- * Sets the value of the vfModuleName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVfModuleName(String value) {
- this.vfModuleName = value;
- }
-
-
- /**
- * Gets the value of the aicNodeClli property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getAicNodeClli() {
- return aicNodeClli;
- }
-
- /**
- * Sets the value of the aicNodeClli property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setAicNodeClli(String value) {
- this.aicNodeClli = value;
- }
-
- /**
- * Gets the value of the tenantId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTenantId() {
- return tenantId;
- }
-
- /**
- * Sets the value of the tenantId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTenantId(String value) {
- this.tenantId = value;
- }
-
- /**
- * Gets the value of the volumeGroupName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVolumeGroupName() {
- return volumeGroupName;
- }
-
- /**
- * Sets the value of the volumeGroupName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVolumeGroupName(String value) {
- this.volumeGroupName = value;
- }
-
- /**
- * Gets the value of the volumeGroupId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVolumeGroupId() {
- return volumeGroupId;
- }
-
- /**
- * Sets the value of the volumeGroupId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVolumeGroupId(String value) {
- this.volumeGroupId = value;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequest.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequest.java
deleted file mode 100644
index e989ad257c..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequest.java
+++ /dev/null
@@ -1,179 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}request-info"/>
- * &lt;sequence>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-inputs"/>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-params" minOccurs="0"/>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-outputs" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "requestInfo",
- "vnfInputs",
- "vnfParams",
- "vnfOutputs"
-})
-@XmlRootElement(name = "vnf-request")
-public class VnfRequest {
-
- @XmlElement(name = "request-info", required = true)
- protected RequestInfo requestInfo;
- @XmlElement(name = "vnf-inputs")
- protected VnfInputs vnfInputs;
- @XmlElement(name = "vnf-params")
- protected Object vnfParams;
- @XmlElement(name = "vnf-outputs")
- protected VnfOutputs vnfOutputs;
-
-
- /**
- * Gets the value of the requestInfo property.
- *
- * @return
- * possible object is
- * {@link RequestInfo }
- *
- */
- public RequestInfo getRequestInfo() {
- return requestInfo;
- }
-
- /**
- * Sets the value of the requestInfo property.
- *
- * @param value
- * allowed object is
- * {@link RequestInfo }
- *
- */
- public void setRequestInfo(RequestInfo value) {
- this.requestInfo = value;
- }
-
- /**
- * Gets the value of the vnfInputs property.
- *
- * @return
- * possible object is
- * {@link VnfInputs }
- *
- */
- public VnfInputs getVnfInputs() {
- return vnfInputs;
- }
-
- /**
- * Sets the value of the vnfInputs property.
- *
- * @param value
- * allowed object is
- * {@link VnfInputs }
- *
- */
- public void setVnfInputs(VnfInputs value) {
- this.vnfInputs = value;
- }
-
- /**
- * Gets the value of the vnfParams property.
- *
- * @return
- * possible object is
- * {@link Object }
- *
- */
- public Object getVnfParams() {
- return vnfParams;
- }
-
- /**
- * Sets the value of the vnfParams property.
- *
- * @param value
- * allowed object is
- * {@link Object }
- *
- */
- public void setVnfParams(Object value) {
- this.vnfParams = value;
- }
-
- /**
- * Gets the value of the vnfOutputs property.
- *
- * @return
- * possible object is
- * {@link VnfOutputs }
- *
- */
- public VnfOutputs getVnfOutputs() {
- return vnfOutputs;
- }
-
- /**
- * Sets the value of the vnfOutputs property.
- *
- * @param value
- * allowed object is
- * {@link VnfOutputs }
- *
- */
- public void setVnfOutputs(VnfOutputs value) {
- this.vnfOutputs = value;
- }
-
- }
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequests.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequests.java
deleted file mode 100644
index 41ebc7d556..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfRequests.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-request" maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "vnfRequest"
-})
-@XmlRootElement(name = "vnf-requests")
-public class VnfRequests {
-
- @XmlElement(name = "vnf-request")
- protected List<VnfRequest> vnfRequest;
-
- /**
- * Gets the value of the vnfRequest property.
- *
- * <p>
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a <CODE>set</CODE> method for the vnfRequest property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getVnfRequest().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link VnfRequest }
- *
- *
- */
- public List<VnfRequest> getVnfRequest() {
- if (vnfRequest == null) {
- vnfRequest = new ArrayList<>();
- }
- return this.vnfRequest;
- }
-
- public void setVnfRequest(List<VnfRequest> vnfRequest) {
- this.vnfRequest=vnfRequest;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfType.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfType.java
deleted file mode 100644
index e303c4e081..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfType.java
+++ /dev/null
@@ -1,148 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "type",
- "id",
- "description"
-})
-@XmlRootElement(name = "vnf-type")
-public class VnfType {
-
- @XmlElement(required = true)
- protected String type;
- @XmlElement(required = true)
- protected String id;
- @XmlElement(required = true)
- protected String description;
-
- /**
- * Gets the value of the type property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getType() {
- return type;
- }
-
- /**
- * Sets the value of the type property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setType(String value) {
- this.type = value;
- }
-
- /**
- * Gets the value of the id property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getId() {
- return id;
- }
-
- /**
- * Sets the value of the id property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setId(String value) {
- this.id = value;
- }
-
- /**
- * Gets the value of the description property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDescription() {
- return description;
- }
-
- /**
- * Sets the value of the description property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDescription(String value) {
- this.description = value;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfTypes.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfTypes.java
deleted file mode 100644
index 46054e9e65..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/VnfTypes.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element ref="{http://org.openecomp/mso/infra/vnf-request/v1}vnf-type" maxOccurs="unbounded" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "vnfType"
-})
-@XmlRootElement(name = "vnf-types")
-public class VnfTypes {
-
- @XmlElement(name = "vnf-type")
- protected List<VnfType> vnfType;
-
- /**
- * Gets the value of the vnfType property.
- *
- * <p>
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a <CODE>set</CODE> method for the vnfType property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getVnfType().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link VnfType }
- *
- *
- */
- public List<VnfType> getVnfType() {
- if (vnfType == null) {
- vnfType = new ArrayList<>();
- }
- return this.vnfType;
- }
-
- public void setVnfType(List<VnfType> vnfType) {
- this.vnfType = vnfType;
- }
-
-}
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/package-info.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/package-info.java
deleted file mode 100644
index eb073e2fd0..0000000000
--- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/openecomp/mso/apihandlerinfra/vnfbeans/package-info.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * 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=========================================================
- */
-
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
-// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2015.09.03 at 02:02:13 PM EDT
-//
-
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://org.openecomp/mso/infra/vnf-request/v1", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
-package org.openecomp.mso.apihandlerinfra.vnfbeans;
-