Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / AddressGroup.java
index 2a14e70..c71969a 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * ONAP-REST
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -30,85 +30,61 @@ import javax.persistence.GenerationType;
 import javax.persistence.Id;
 import javax.persistence.NamedQuery;
 import javax.persistence.OrderBy;
-import javax.persistence.PrePersist;
-import javax.persistence.PreUpdate;
 import javax.persistence.Table;
 
 @Entity
 @Table(name="AddressGroup")
 @NamedQuery(name="AddressGroup.findAll", query="SELECT e FROM AddressGroup e ")
 public class AddressGroup implements Serializable {
-       private static final long serialVersionUID = 1L;
-
-       private static String domain;
-
-       @Id
-       @GeneratedValue(strategy = GenerationType.AUTO)
-       @Column(name="id")
-       private int id;
-       
-       @Column(name="name", nullable=false)
-       @OrderBy("asc")
-       private String name;
-       
-       @Column(name="prefixlist")
-       private String prefixList;
-       
-       
-       @Column(name="description")
-       private String description;
-       
-       public AddressGroup() {
-               
-       }
-       public AddressGroup(String string, String userid) {
-               this(domain);
-               
-       }
-       public AddressGroup(String domain) {
-               
-       }       
-
-       @PrePersist
-       public void     prePersist() {
-               
-       }
-       @PreUpdate
-       public void preUpdate() {
-       }
-
-       
-       public int getId() {
-               return this.id;
-       }
-
-       public void setId(int id) {
-               this.id = id;
-       }
-       public String getGroupName() {
-               return this.name;
-       }
-
-       public void setGroupName(String serviceName) {
-               this.name = serviceName;
-
-       }
-               
-       public String getPrefixList() {
-               return this.prefixList;
-       }
-
-       public void setServiceList(String prefixList) {
-               this.prefixList = prefixList;
-
-       }
-       public String getDescription() {
-               return this.description;
-       }
-
-       public void setDescription(String description) {
-               this.description = description;
-
-       }
+    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="prefixlist")
+    private String prefixList;
+
+
+    @Column(name="description")
+    private String description;
+
+    public int getId() {
+        return this.id;
+    }
+
+    public void setId(int id) {
+        this.id = id;
+    }
+    public String getGroupName() {
+        return this.name;
+    }
+
+    public void setGroupName(String serviceName) {
+        this.name = serviceName;
+
+    }
+
+    public String getPrefixList() {
+        return this.prefixList;
+    }
+
+    public void setServiceList(String prefixList) {
+        this.prefixList = prefixList;
+
+    }
+    public String getDescription() {
+        return this.description;
+    }
+
+    public void setDescription(String description) {
+        this.description = description;
+
+    }
 
 }