Removed checkstyle warnings
[policy/engine.git] / BRMSGateway / src / main / java / org / onap / policy / brms / entity / BrmsPolicyInfo.java
@@ -17,7 +17,8 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-package org.onap.policy.brmsInterface.jpa;
+
+package org.onap.policy.brms.entity;
 
 import javax.persistence.Column;
 import javax.persistence.Entity;
@@ -27,30 +28,30 @@ import javax.persistence.ManyToOne;
 import javax.persistence.Table;
 
 @Entity
-@Table(name="brmsgroup_policy")
-public class BRMSPolicyInfo {
-       
-       @Id
-       @Column(name="policyName")
-       private String policyName;
-       
-       @ManyToOne
-       @JoinColumn(name="controllerName")
-       private BRMSGroupInfo controllerName;
-       
-       public String getPolicyName() {
-               return policyName;
-       }
-
-       public void setPolicyName(String policyName) {
-               this.policyName = policyName;
-       }
-
-       public BRMSGroupInfo getControllerName() {
-               return controllerName;
-       }
-
-       public void setControllerName(BRMSGroupInfo controllerName) {
-               this.controllerName = controllerName;
-       }
+@Table(name = "brmsgroup_policy")
+public class BrmsPolicyInfo {
+
+    @Id
+    @Column(name = "policyName")
+    private String policyName;
+
+    @ManyToOne
+    @JoinColumn(name = "controllerName")
+    private BrmsGroupInfo controllerName;
+
+    public String getPolicyName() {
+        return policyName;
+    }
+
+    public void setPolicyName(final String policyName) {
+        this.policyName = policyName;
+    }
+
+    public BrmsGroupInfo getControllerName() {
+        return controllerName;
+    }
+
+    public void setControllerName(final BrmsGroupInfo controllerName) {
+        this.controllerName = controllerName;
+    }
 }