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 / ServiceInformation.java
index b4fe26a..da055cb 100644 (file)
 package org.onap.so.adapters.sdncrest;
 
 import java.io.Serializable;
-
 import javax.xml.bind.annotation.XmlElement;
-
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 /**
  * Service Information specified by the SDNC "agnostic" API.
  */
 public class ServiceInformation implements Serializable {
-       private static final long serialVersionUID = 1L;
-
-       // The subscription's service type for the target service instance.
-       private String serviceType;
-
-       // Identifies the target service instance for this particular SDNC request.
-       // NOTE: this could be a child of the parent model instance, i.e. this
-       // service instance ID may be different from the service instance ID
-       // associated with the transaction MSO has with the system that invoked it.
-       private String serviceInstanceId;
-
-       // The subscriber name.
-       private String subscriberName;
-
-       // The subscriber global ID (customer ID).
-       private String subscriberGlobalId;
-
-       public ServiceInformation(String serviceType, String serviceInstanceId,
-                       String subscriberName, String subscriberGlobalId) {
-               this.serviceType = serviceType;
-               this.serviceInstanceId = serviceInstanceId;
-               this.subscriberName = subscriberName;
-               this.subscriberGlobalId = subscriberGlobalId;
-       }
-
-       public ServiceInformation() {
-       }
-
-       @JsonProperty("serviceType")
-       @XmlElement(name = "serviceType")
-       public String getServiceType() {
-               return serviceType;
-       }
-
-       @JsonProperty("serviceType")
-       public void setServiceType(String serviceType) {
-               this.serviceType = serviceType;
-       }
-
-       @JsonProperty("serviceInstanceId")
-       @XmlElement(name = "serviceInstanceId")
-       public String getServiceInstanceId() {
-               return serviceInstanceId;
-       }
-
-       @JsonProperty("serviceInstanceId")
-       public void setServiceInstanceId(String serviceInstanceId) {
-               this.serviceInstanceId = serviceInstanceId;
-       }
-
-       @JsonProperty("subscriberName")
-       @XmlElement(name = "subscriberName")
-       public String getSubscriberName() {
-               return subscriberName;
-       }
-
-       @JsonProperty("subscriberName")
-       public void setSubscriberName(String subscriberName) {
-               this.subscriberName = subscriberName;
-       }
-
-       @JsonProperty("subscriberGlobalId")
-       @XmlElement(name = "subscriberGlobalId")
-       public String getSubscriberGlobalId() {
-               return subscriberGlobalId;
-       }
-
-       @JsonProperty("subscriberGlobalId")
-       public void setSubscriberGlobalId(String subscriberGlobalId) {
-               this.subscriberGlobalId = subscriberGlobalId;
-       }
-}
\ No newline at end of file
+    private static final long serialVersionUID = 1L;
+
+    // The subscription's service type for the target service instance.
+    private String serviceType;
+
+    // Identifies the target service instance for this particular SDNC request.
+    // NOTE: this could be a child of the parent model instance, i.e. this
+    // service instance ID may be different from the service instance ID
+    // associated with the transaction MSO has with the system that invoked it.
+    private String serviceInstanceId;
+
+    // The subscriber name.
+    private String subscriberName;
+
+    // The subscriber global ID (customer ID).
+    private String subscriberGlobalId;
+
+    public ServiceInformation(String serviceType, String serviceInstanceId, String subscriberName,
+            String subscriberGlobalId) {
+        this.serviceType = serviceType;
+        this.serviceInstanceId = serviceInstanceId;
+        this.subscriberName = subscriberName;
+        this.subscriberGlobalId = subscriberGlobalId;
+    }
+
+    public ServiceInformation() {}
+
+    @JsonProperty("serviceType")
+    @XmlElement(name = "serviceType")
+    public String getServiceType() {
+        return serviceType;
+    }
+
+    @JsonProperty("serviceType")
+    public void setServiceType(String serviceType) {
+        this.serviceType = serviceType;
+    }
+
+    @JsonProperty("serviceInstanceId")
+    @XmlElement(name = "serviceInstanceId")
+    public String getServiceInstanceId() {
+        return serviceInstanceId;
+    }
+
+    @JsonProperty("serviceInstanceId")
+    public void setServiceInstanceId(String serviceInstanceId) {
+        this.serviceInstanceId = serviceInstanceId;
+    }
+
+    @JsonProperty("subscriberName")
+    @XmlElement(name = "subscriberName")
+    public String getSubscriberName() {
+        return subscriberName;
+    }
+
+    @JsonProperty("subscriberName")
+    public void setSubscriberName(String subscriberName) {
+        this.subscriberName = subscriberName;
+    }
+
+    @JsonProperty("subscriberGlobalId")
+    @XmlElement(name = "subscriberGlobalId")
+    public String getSubscriberGlobalId() {
+        return subscriberGlobalId;
+    }
+
+    @JsonProperty("subscriberGlobalId")
+    public void setSubscriberGlobalId(String subscriberGlobalId) {
+        this.subscriberGlobalId = subscriberGlobalId;
+    }
+}