Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / sdncrest / SDNCServiceRequest.java
index 950362e..c9f42d1 100644 (file)
 package org.onap.so.adapters.sdncrest;
 
 import java.io.Serializable;
-
 import javax.xml.bind.annotation.XmlElement;
 import javax.xml.bind.annotation.XmlRootElement;
-
 import com.fasterxml.jackson.annotation.JsonInclude;
 import com.fasterxml.jackson.annotation.JsonInclude.Include;
 import com.fasterxml.jackson.annotation.JsonProperty;
 import com.fasterxml.jackson.annotation.JsonRootName;
 
 // NOTE: the JAXB (XML) annotations are required with JBoss AS7 and RESTEasy,
-//       even though we are using JSON exclusively.  The @NoJackson annotation
-//       is also required in this environment.
+// even though we are using JSON exclusively. The @NoJackson annotation
+// is also required in this environment.
 
 /**
- * SDNC adapter request for "agnostic" API services.
- * The target action is determined by a service type and an operation.
+ * SDNC adapter request for "agnostic" API services. The target action is determined by a service type and an operation.
  */
 @JsonRootName("SDNCServiceRequest")
 @JsonInclude(Include.NON_NULL)
 @XmlRootElement(name = "SDNCServiceRequest")
 public class SDNCServiceRequest extends SDNCRequestCommon implements Serializable {
-       private static final long serialVersionUID = 1L;
+    private static final long serialVersionUID = 1L;
 
-       // Request Information specified by SDNC "agnostic" API
-       private RequestInformation requestInformation;
+    // Request Information specified by SDNC "agnostic" API
+    private RequestInformation requestInformation;
 
-       // Service Information specified by: SDNC "agnostic" API
-       private ServiceInformation serviceInformation;
+    // Service Information specified by: SDNC "agnostic" API
+    private ServiceInformation serviceInformation;
 
-       // The SDNC service type specified by SDNC "agnostic" API
-       private String sdncService;
+    // The SDNC service type specified by SDNC "agnostic" API
+    private String sdncService;
 
-       // The SDNC operation specified by SDNC "agnostic" API
-       private String sdncOperation;
+    // The SDNC operation specified by SDNC "agnostic" API
+    private String sdncOperation;
 
-       // The SDNC service data type specified by SDNC "agnostic" API
-       private String sdncServiceDataType;
+    // The SDNC service data type specified by SDNC "agnostic" API
+    private String sdncServiceDataType;
 
-       // The SDNC service data specified by SDNC "agnostic" API
+    // The SDNC service data specified by SDNC "agnostic" API
     private String sdncServiceData;
 
-       public SDNCServiceRequest() {
-       }
-
-       public SDNCServiceRequest(String bpNotificationUrl, String bpTimeout,
-                       String sdncRequestId, String sdncService, String sdncOperation,
-                       RequestInformation requestInformation,
-                       ServiceInformation serviceInformation, String sdncServiceDataType,
-                       String sndcServiceData) {
-               super(bpNotificationUrl, bpTimeout, sdncRequestId);
-               this.requestInformation = requestInformation;
-               this.serviceInformation = serviceInformation;
-               this.sdncService = sdncService;
-               this.sdncOperation = sdncOperation;
-               this.sdncServiceDataType = sdncServiceDataType;
-               this.sdncServiceData = sndcServiceData;
-       }
-
-       @JsonProperty("requestInformation")
-       @XmlElement(name = "requestInformation")
-       public RequestInformation getRequestInformation() {
-               return requestInformation;
-       }
-
-       @JsonProperty("requestInformation")
-       public void setRequestInformation(RequestInformation requestInformation) {
-               this.requestInformation = requestInformation;
-       }
-
-       @JsonProperty("serviceInformation")
-       @XmlElement(name = "serviceInformation")
-       public ServiceInformation getServiceInformation() {
-               return serviceInformation;
-       }
-
-       @JsonProperty("serviceInformation")
-       public void setServiceInformation(ServiceInformation serviceInformation) {
-               this.serviceInformation = serviceInformation;
-       }
-
-       @JsonProperty("sdncService")
-       @XmlElement(name = "sdncService")
-       public String getSdncService() {
-               return sdncService;
-       }
-
-       @JsonProperty("sdncService")
-       public void setSdncService(String sdncService) {
-               this.sdncService = sdncService;
-       }
-
-       @JsonProperty("sdncOperation")
-       @XmlElement(name = "sdncOperation")
-       public String getSdncOperation() {
-               return sdncOperation;
-       }
-
-       @JsonProperty("sdncOperation")
-       public void setSdncOperation(String sdncOperation) {
-               this.sdncOperation = sdncOperation;
-       }
-
-       @JsonProperty("sdncServiceDataType")
-       @XmlElement(name = "sdncServiceDataType")
-       public String getSdncServiceDataType() {
-               return sdncServiceDataType;
-       }
-
-       @JsonProperty("sdncServiceDataType")
-       public void setSdncServiceDataType(String sdncServiceDataType) {
-               this.sdncServiceDataType = sdncServiceDataType;
-       }
-
-       @JsonProperty("sdncServiceData")
-       @XmlElement(name = "sdncServiceData")
-       public String getSdncServiceData() {
-               return sdncServiceData;
-       }
-
-       @JsonProperty("sdncServiceData")
-       public void setSdncServiceData(String sndcServiceData) {
-               this.sdncServiceData = sndcServiceData;
-       }
-}
\ No newline at end of file
+    public SDNCServiceRequest() {}
+
+    public SDNCServiceRequest(String bpNotificationUrl, String bpTimeout, String sdncRequestId, String sdncService,
+            String sdncOperation, RequestInformation requestInformation, ServiceInformation serviceInformation,
+            String sdncServiceDataType, String sndcServiceData) {
+        super(bpNotificationUrl, bpTimeout, sdncRequestId);
+        this.requestInformation = requestInformation;
+        this.serviceInformation = serviceInformation;
+        this.sdncService = sdncService;
+        this.sdncOperation = sdncOperation;
+        this.sdncServiceDataType = sdncServiceDataType;
+        this.sdncServiceData = sndcServiceData;
+    }
+
+    @JsonProperty("requestInformation")
+    @XmlElement(name = "requestInformation")
+    public RequestInformation getRequestInformation() {
+        return requestInformation;
+    }
+
+    @JsonProperty("requestInformation")
+    public void setRequestInformation(RequestInformation requestInformation) {
+        this.requestInformation = requestInformation;
+    }
+
+    @JsonProperty("serviceInformation")
+    @XmlElement(name = "serviceInformation")
+    public ServiceInformation getServiceInformation() {
+        return serviceInformation;
+    }
+
+    @JsonProperty("serviceInformation")
+    public void setServiceInformation(ServiceInformation serviceInformation) {
+        this.serviceInformation = serviceInformation;
+    }
+
+    @JsonProperty("sdncService")
+    @XmlElement(name = "sdncService")
+    public String getSdncService() {
+        return sdncService;
+    }
+
+    @JsonProperty("sdncService")
+    public void setSdncService(String sdncService) {
+        this.sdncService = sdncService;
+    }
+
+    @JsonProperty("sdncOperation")
+    @XmlElement(name = "sdncOperation")
+    public String getSdncOperation() {
+        return sdncOperation;
+    }
+
+    @JsonProperty("sdncOperation")
+    public void setSdncOperation(String sdncOperation) {
+        this.sdncOperation = sdncOperation;
+    }
+
+    @JsonProperty("sdncServiceDataType")
+    @XmlElement(name = "sdncServiceDataType")
+    public String getSdncServiceDataType() {
+        return sdncServiceDataType;
+    }
+
+    @JsonProperty("sdncServiceDataType")
+    public void setSdncServiceDataType(String sdncServiceDataType) {
+        this.sdncServiceDataType = sdncServiceDataType;
+    }
+
+    @JsonProperty("sdncServiceData")
+    @XmlElement(name = "sdncServiceData")
+    public String getSdncServiceData() {
+        return sdncServiceData;
+    }
+
+    @JsonProperty("sdncServiceData")
+    public void setSdncServiceData(String sndcServiceData) {
+        this.sdncServiceData = sndcServiceData;
+    }
+}