X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrThirdpartySdnc.java;h=c478d54332123bf6f759f56c233d1111d6f38889;hb=ed26992f976741031237ead3a5dc0565d4318b05;hp=a4fad112c44936a91867a5e67cfd27ba751376d3;hpb=ed8d8775c8d87601bceb9fe98715de1a4167287c;p=aai%2Fesr-server.git diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrThirdpartySdnc.java b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrThirdpartySdnc.java index a4fad11..c478d54 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrThirdpartySdnc.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrThirdpartySdnc.java @@ -15,45 +15,53 @@ */ package org.onap.aai.esr.entity.aai; -public class EsrThirdpartySdnc { - - private String thirdpartySdncId; - - private String location; - - private String productName; - - private EsrSystemInfoList esrSystemInfoList; - - public String getThirdpartySdncId() { - return thirdpartySdncId; - } - - public void setThirdpartySdncId(String thirdpartySdncId) { - this.thirdpartySdncId = thirdpartySdncId; - } - - public String getLocation() { - return location; - } - - public void setLocation(String location) { - this.location = location; - } - - public String getProductName() { - return productName; - } - - public void setProductName(String productName) { - this.productName = productName; - } - - public EsrSystemInfoList getEsrSystemInfoList() { - return esrSystemInfoList; - } - - public void setEsrSystemInfoList(EsrSystemInfoList esrSystemInfoList) { - this.esrSystemInfoList = esrSystemInfoList; - } +import java.io.Serializable; +import com.google.gson.annotations.SerializedName; + +public class EsrThirdpartySdnc implements Serializable { + public static final long serialVersionUID = 1L; + + @SerializedName("thirdparty-sdnc-id") + private String thirdpartySdncId; + + @SerializedName("location") + private String location; + + @SerializedName("product-name") + private String productName; + + @SerializedName("resource-version") + private String resourceVersion; + + public String getThirdpartySdncId() { + return thirdpartySdncId; + } + + public void setThirdpartySdncId(String thirdpartySdncId) { + this.thirdpartySdncId = thirdpartySdncId; + } + + public String getLocation() { + return location; + } + + public void setLocation(String location) { + this.location = location; + } + + public String getProductName() { + return productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + + public String getResourceVersion() { + return resourceVersion; + } + + public void setResourceVersion(String resourceVersion) { + this.resourceVersion = resourceVersion; + } }