JUnit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / Zone.java
index eb53c42..58c1a27 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,72 +30,47 @@ 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="zone")
 @NamedQuery(name="Zone.findAll", query="SELECT e FROM Zone e ")
 public class Zone implements Serializable {
-       private static final long serialVersionUID = 1L;
+    private static final long serialVersionUID = 1L;
 
-       private static String domain;
+    @Id
+    @GeneratedValue(strategy = GenerationType.AUTO)
+    @Column(name="id")
+    private int id;
 
-       @Id
-       @GeneratedValue(strategy = GenerationType.AUTO)
-       @Column(name="id")
-       private int id;
-       
-       @Column(name="zonename", nullable=false)
-       @OrderBy("asc")
-       private String zoneName;
-       
-       @Column(name="zonevalue")
-       private String zoneValue;
+    @Column(name="zonename", nullable=false)
+    @OrderBy("asc")
+    private String zoneName;
 
+    @Column(name="zonevalue")
+    private String zoneValue;
 
-       public Zone() {
-               
-       }
-       public Zone(String string, String userid) {
-               this(domain);
-               
-       }
-       public Zone(String domain) {
-               
-       }       
+    public int getId() {
+        return this.id;
+    }
 
-       @PrePersist
-       public void     prePersist() {
-               
-       }
-       @PreUpdate
-       public void preUpdate() {
-       }
+    public void setId(int id) {
+        this.id = id;
+    }
+    public String getZoneName() {
+        return this.zoneName;
+    }
 
-       
-       public int getId() {
-               return this.id;
-       }
+    public void setZoneName(String zoneName) {
+        this.zoneName = zoneName;
 
-       public void setId(int id) {
-               this.id = id;
-       }
-       public String getZoneName() {
-               return this.zoneName;
-       }
+    }
+    public String getZoneValue() {
+        return this.zoneValue;
+    }
 
-       public void setZoneName(String zoneName) {
-               this.zoneName = zoneName;
+    public void setZoneValue(String zoneValue) {
+        this.zoneValue = zoneValue;
+    }
 
-       }
-       public String getZoneValue() {
-               return this.zoneValue;
-       }
-
-       public void setZoneValue(String zoneValue) {
-               this.zoneValue = zoneValue;
-       }
-       
 }