Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / PolicyScopeType.java
index 0367b01..04f20c3 100644 (file)
@@ -37,40 +37,40 @@ import javax.persistence.Table;
 @Table(name="PolicyScopeType")
 @NamedQuery(name="PolicyScopeType.findAll", query="SELECT e FROM PolicyScopeType e ")
 public class PolicyScopeType implements Serializable {
-       private static final long serialVersionUID = 1L;
+    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 name;
-       
-       @Column(name="description ")
-       private String description ;
+    @Id
+    @GeneratedValue(strategy = GenerationType.AUTO)
+    @Column(name="id")
+    private int id;
 
-       public int getId() {
-               return this.id;
-       }
+    @Column(name="name", nullable=false)
+    @OrderBy("asc")
+    private String name;
 
-       public void setId(int id) {
-               this.id = id;
-       }
-       public String getName() {
-               return this.name;
-       }
+    @Column(name="description ")
+    private String description ;
 
-       public void setName(String name) {
-               this.name = name;
+    public int getId() {
+        return this.id;
+    }
 
-       }
-       public String getDescriptionValue() {
-               return this.description ;
-       }
+    public void setId(int id) {
+        this.id = id;
+    }
+    public String getName() {
+        return this.name;
+    }
 
-       public void setDescriptionValue(String description ) {
-               this.description  = description ;
-       }
+    public void setName(String name) {
+        this.name = name;
+
+    }
+    public String getDescriptionValue() {
+        return this.description ;
+    }
+
+    public void setDescriptionValue(String description ) {
+        this.description  = description ;
+    }
 }