Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ServiceList.java
index e09dff0..33243b0 100644 (file)
@@ -36,88 +36,88 @@ import javax.persistence.Table;
 @Table(name="servicegroup")
 @NamedQuery(name="ServiceList.findAll", query="SELECT e FROM ServiceList e ")
 public class ServiceList implements Serializable {
-       private static final long serialVersionUID = 1L;
-
-       @Id
-       @GeneratedValue(strategy = GenerationType.AUTO)
-       @Column(name="id")
-       private int id;
-       
-       @Column(name="name", nullable=false)
-       @OrderBy("asc")
-       private String serviceName;
-       
-       @Column(name="description")
-       private String serviceDesc;
-       
-       @Column(name="type")
-       private String serviceType;
-       
-       @Column(name="transportprotocol")
-       private String serviceTrasProtocol;
-       
-       @Column(name="appprotocol ")
-       private String serviceAppProtocol;
-       
-       @Column(name="ports")
-       private String servicePorts;
-       
-       public int getId() {
-               return this.id;
-       }
-
-       public void setId(int id) {
-               this.id = id;
-       }
-       public String getServiceName() {
-               return this.serviceName;
-       }
-
-       public void setServiceName(String serviceName) {
-               this.serviceName = serviceName;
-
-       }
-       
-       public String getServiceDescription() {
-               return this.serviceDesc;
-       }
-
-       public void setServiceDescription(String serviceDesc) {
-               this.serviceDesc = serviceDesc;
-
-       }
-       
-       public String getServiceType() {
-               return this.serviceType;
-       }
-
-       public void setServiceType(String serviceType) {
-               this.serviceType = serviceType;
-       }
-       
-       public String getServiceTransProtocol() {
-               return this.serviceTrasProtocol;
-       }
-
-       public void setServiceTransProtocol(String serviceTrasProtocol) {
-               this.serviceTrasProtocol = serviceTrasProtocol;
-
-       }
-       
-       public String getServiceAppProtocol() {
-               return this.serviceAppProtocol;
-       }
-
-       public void setServiceAppProtocol(String serviceAppProtocol) {
-               this.serviceAppProtocol = serviceAppProtocol;
-
-       }
-       public String getServicePorts() {
-               return this.servicePorts;
-       }
-
-       public void setServicePorts(String servicePorts) {
-               this.servicePorts = servicePorts;
-
-       }
+    private static final long serialVersionUID = 1L;
+
+    @Id
+    @GeneratedValue(strategy = GenerationType.AUTO)
+    @Column(name="id")
+    private int id;
+
+    @Column(name="name", nullable=false)
+    @OrderBy("asc")
+    private String serviceName;
+
+    @Column(name="description")
+    private String serviceDesc;
+
+    @Column(name="type")
+    private String serviceType;
+
+    @Column(name="transportprotocol")
+    private String serviceTrasProtocol;
+
+    @Column(name="appprotocol ")
+    private String serviceAppProtocol;
+
+    @Column(name="ports")
+    private String servicePorts;
+
+    public int getId() {
+        return this.id;
+    }
+
+    public void setId(int id) {
+        this.id = id;
+    }
+    public String getServiceName() {
+        return this.serviceName;
+    }
+
+    public void setServiceName(String serviceName) {
+        this.serviceName = serviceName;
+
+    }
+
+    public String getServiceDescription() {
+        return this.serviceDesc;
+    }
+
+    public void setServiceDescription(String serviceDesc) {
+        this.serviceDesc = serviceDesc;
+
+    }
+
+    public String getServiceType() {
+        return this.serviceType;
+    }
+
+    public void setServiceType(String serviceType) {
+        this.serviceType = serviceType;
+    }
+
+    public String getServiceTransProtocol() {
+        return this.serviceTrasProtocol;
+    }
+
+    public void setServiceTransProtocol(String serviceTrasProtocol) {
+        this.serviceTrasProtocol = serviceTrasProtocol;
+
+    }
+
+    public String getServiceAppProtocol() {
+        return this.serviceAppProtocol;
+    }
+
+    public void setServiceAppProtocol(String serviceAppProtocol) {
+        this.serviceAppProtocol = serviceAppProtocol;
+
+    }
+    public String getServicePorts() {
+        return this.servicePorts;
+    }
+
+    public void setServicePorts(String servicePorts) {
+        this.servicePorts = servicePorts;
+
+    }
 }