summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/pomba/contextbuilder/sdnc/model
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/pomba/contextbuilder/sdnc/model')
-rw-r--r--src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Image.java92
-rw-r--r--src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Pserver.java91
-rw-r--r--src/main/java/org/onap/pomba/contextbuilder/sdnc/model/VnfTopologyIdentifier.java66
3 files changed, 248 insertions, 1 deletions
diff --git a/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Image.java b/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Image.java
new file mode 100644
index 0000000..5ad0529
--- /dev/null
+++ b/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Image.java
@@ -0,0 +1,92 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 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.
+ * ============LICENSE_END=====================================================
+ */
+
+package org.onap.pomba.contextbuilder.sdnc.model;
+
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+
+public class Image {
+
+ @SerializedName("image-name")
+ @Expose
+ private String imageName;
+
+ private final static String NULL_STR = "<null>";
+
+ /**
+ * No args constructor for use in serialization
+ *
+ */
+ public Image() {
+ }
+
+ /**
+ *
+ * @param imageName
+ */
+ public Image(String imageName) {
+ super();
+ this.imageName = imageName;
+ }
+
+ public String getImageName() {
+ return imageName;
+ }
+
+ public void setImageName(String imageName) {
+ this.imageName = imageName;
+ }
+
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(Image.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
+ sb.append("imageName");
+ sb.append('=');
+ sb.append(((this.imageName == null)?NULL_STR:this.imageName));
+ sb.append(',');
+ if (sb.charAt((sb.length()- 1)) == ',') {
+ sb.setCharAt((sb.length()- 1), ']');
+ } else {
+ sb.append(']');
+ }
+ return sb.toString();
+ }
+
+ @Override
+ public int hashCode() {
+ int result = 1;
+ result = ((result* 31)+((this.imageName == null)? 0 :this.imageName.hashCode()));
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object other) {
+ if (other == this) {
+ return true;
+ }
+ if (!(other instanceof Image)) {
+ return false;
+ }
+ Image rhs = ((Image) other);
+ return ((this.imageName == rhs.imageName)||((this.imageName!= null)&&this.imageName.equals(rhs.imageName)));
+ }
+
+}
diff --git a/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Pserver.java b/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Pserver.java
new file mode 100644
index 0000000..1c7a832
--- /dev/null
+++ b/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/Pserver.java
@@ -0,0 +1,91 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 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.
+ * ============LICENSE_END=====================================================
+ */
+
+package org.onap.pomba.contextbuilder.sdnc.model;
+
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+
+public class Pserver {
+ @SerializedName("hostname")
+ @Expose
+ private String hostname;
+
+ private final static String NULL_STR = "<null>";
+
+ /**
+ * No args constructor for use in serialization
+ *
+ */
+ public Pserver() {
+ }
+
+ /**
+ *
+ * @param hostname
+ */
+ public Pserver(String hostname) {
+ super();
+ this.hostname = hostname;
+ }
+
+ public String getHostname() {
+ return hostname;
+ }
+
+ public void setHostname(String hostname) {
+ this.hostname = hostname;
+ }
+
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(Pserver.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
+ sb.append("hostname");
+ sb.append('=');
+ sb.append(((this.hostname == null)?NULL_STR:this.hostname));
+ sb.append(',');
+ if (sb.charAt((sb.length()- 1)) == ',') {
+ sb.setCharAt((sb.length()- 1), ']');
+ } else {
+ sb.append(']');
+ }
+ return sb.toString();
+ }
+
+ @Override
+ public int hashCode() {
+ int result = 1;
+ result = ((result* 31)+((this.hostname == null)? 0 :this.hostname.hashCode()));
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object other) {
+ if (other == this) {
+ return true;
+ }
+ if (!(other instanceof Pserver)) {
+ return false;
+ }
+ Pserver rhs = ((Pserver) other);
+ return ((this.hostname == rhs.hostname)||((this.hostname!= null)&&this.hostname.equals(rhs.hostname)));
+ }
+
+}
diff --git a/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/VnfTopologyIdentifier.java b/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/VnfTopologyIdentifier.java
index 8dbf0c8..de22373 100644
--- a/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/VnfTopologyIdentifier.java
+++ b/src/main/java/org/onap/pomba/contextbuilder/sdnc/model/VnfTopologyIdentifier.java
@@ -38,6 +38,20 @@ public class VnfTopologyIdentifier {
@SerializedName("vnf-type")
@Expose
private String vnfType;
+ @SerializedName("inMaint")
+ @Expose
+ private String inMaint;
+ @SerializedName("prov-status")
+ @Expose
+ private String provStatus;
+ @SerializedName("pserver")
+ @Expose
+ private Pserver pserver;
+ @SerializedName("image")
+ @Expose
+ private Image image;
+
+
private final static String NULL_STR = "<null>";
@@ -56,13 +70,17 @@ public class VnfTopologyIdentifier {
* @param vnfType
* @param genericVnfType
*/
- public VnfTopologyIdentifier(String genericVnfType, String serviceType, String vnfName, String genericVnfName, String vnfType) {
+ public VnfTopologyIdentifier(String genericVnfType, String serviceType, String vnfName, String genericVnfName, String vnfType, String inMaint, String provStatus, Pserver pserver, Image image) {
super();
this.genericVnfType = genericVnfType;
this.serviceType = serviceType;
this.vnfName = vnfName;
this.genericVnfName = genericVnfName;
this.vnfType = vnfType;
+ this.inMaint = inMaint;
+ this.provStatus = provStatus;
+ this.pserver = pserver;
+ this.image = image;
}
public String getGenericVnfType() {
@@ -105,6 +123,39 @@ public class VnfTopologyIdentifier {
this.vnfType = vnfType;
}
+ public String getInMaint() {
+ return inMaint;
+ }
+
+ public void setInMaint(String inMaint) {
+ this.inMaint = inMaint;
+ }
+
+ public String getProvStatus() {
+ return provStatus;
+ }
+
+ public void setProvStatus(String provStatus) {
+ this.provStatus = provStatus;
+ }
+
+ public Pserver getPserver() {
+ return pserver;
+ }
+
+ public void setPserver(Pserver pserver) {
+ this.pserver = pserver;
+ }
+
+ public Image getImage() {
+ return image;
+ }
+
+ public void setImage(Image image) {
+ this.image = image;
+ }
+
+
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -129,6 +180,15 @@ public class VnfTopologyIdentifier {
sb.append('=');
sb.append(((this.vnfType == null)?NULL_STR:this.vnfType));
sb.append(',');
+ sb.append("inMaint");
+ sb.append('=');
+ sb.append(((this.inMaint == null)?NULL_STR:this.inMaint));
+ sb.append(',');
+ sb.append("provStatus");
+ sb.append('=');
+ sb.append(((this.provStatus == null)?NULL_STR:this.provStatus));
+ sb.append(',');
+
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
@@ -145,6 +205,10 @@ public class VnfTopologyIdentifier {
result = ((result* 31)+((this.genericVnfName == null)? 0 :this.genericVnfName.hashCode()));
result = ((result* 31)+((this.vnfType == null)? 0 :this.vnfType.hashCode()));
result = ((result* 31)+((this.genericVnfType == null)? 0 :this.genericVnfType.hashCode()));
+ result = ((result* 31)+((this.inMaint == null)? 0 :this.inMaint.hashCode()));
+ result = ((result* 31)+((this.provStatus == null)? 0 :this.provStatus.hashCode()));
+ result = ((result* 31)+((this.pserver == null)? 0 :this.pserver.hashCode()));
+ result = ((result* 31)+((this.image == null)? 0 :this.image.hashCode()));
return result;
}