Update docker image to fix CSIT failure
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / CBAMCreateSubscriptionResponse.java
index 78cd9ce..6bcc469 100644 (file)
 
 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo;
 
-import org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity.Subscription;
-
-public class CBAMCreateSubscriptionResponse extends Subscription{
-/*
-       
-       @JsonProperty("problemDetails")
-       private ProblemDetails problemDetails;
+import org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity.SubscriptionResponse;
 
+import com.fasterxml.jackson.annotation.JsonProperty;
 
-       public ProblemDetails getProblemDetails() {
-               return problemDetails;
+public class CBAMCreateSubscriptionResponse extends SubscriptionResponse{
+       @JsonProperty("lcnApiVersion")
+       private String lcnApiVersion;
+       
+       @JsonProperty("callbackUrl")
+       private String callbackUrl;
+       
+       public String getLcnApiVersion() {
+               return lcnApiVersion;
        }
 
-       public void setProblemDetails(ProblemDetails problemDetails) {
-               this.problemDetails = problemDetails;
+       public void setLcnApiVersion(String lcnApiVersion) {
+               this.lcnApiVersion = lcnApiVersion;
        }
-*/
-       
        
+       public String getCallbackUrl() {
+               return callbackUrl;
+       }
 
-       
-       
+       public void setCallbackUrl(String callbackUrl) {
+               this.callbackUrl = callbackUrl;
+       }
 }