aboutsummaryrefslogtreecommitdiffstats
path: root/appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/data/DesignInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/data/DesignInfo.java')
-rw-r--r--appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/data/DesignInfo.java115
1 files changed, 115 insertions, 0 deletions
diff --git a/appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/data/DesignInfo.java b/appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/data/DesignInfo.java
new file mode 100644
index 000000000..a6d2ba24b
--- /dev/null
+++ b/appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/data/DesignInfo.java
@@ -0,0 +1,115 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Copyright (C) 2017 Amdocs
+ * =============================================================================
+ * 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.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.design.data;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+public class DesignInfo{
+
+ @JsonProperty("vnf-type")
+ String vnf_type;
+
+ @JsonProperty("vnfc-type")
+ String vnfc_type;
+
+ @JsonProperty("protocol")
+ String protocol;
+
+ @JsonProperty("incart")
+ String inCart;
+
+ @JsonProperty("action")
+ String action;
+
+ @JsonProperty("artifact-name")
+ String artifact_name;
+
+
+ @JsonProperty("artifact-type")
+ String artifact_type;
+
+ public String getArtifact_type() {
+ return artifact_type;
+ }
+
+ public void setArtifact_type(String artifact_type) {
+ this.artifact_type = artifact_type;
+ }
+
+ public String getArtifact_name() {
+ return artifact_name;
+ }
+
+ public void setArtifact_name(String artifact_name) {
+ this.artifact_name = artifact_name;
+ }
+
+ public String getAction() {
+ return action;
+ }
+
+ public void setAction(String action) {
+ this.action = action;
+ }
+
+ public String getVnf_type() {
+ return vnf_type;
+ }
+
+ public void setVnf_type(String vnf_type) {
+ this.vnf_type = vnf_type;
+ }
+
+ public String getVnfc_type() {
+ return vnfc_type;
+ }
+
+ public void setVnfc_type(String vnfc_type) {
+ this.vnfc_type = vnfc_type;
+ }
+
+ public String getProtocol() {
+ return protocol;
+ }
+
+ public void setProtocol(String protocol) {
+ this.protocol = protocol;
+ }
+
+ public String getInCart() {
+ return inCart;
+ }
+
+ public void setInCart(String inCart) {
+ this.inCart = inCart;
+ }
+
+ @Override
+ public String toString() {
+ return "DesignInfo [vnf_type=" + vnf_type + ", vnfc_type=" + vnfc_type + ", protocol=" + protocol + ", inCart="
+ + inCart + "]";
+ }
+
+}