Added Junis for Policy ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / PolicyScore.java
index a9e7765..dba7299 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.
@@ -42,8 +42,6 @@ import javax.persistence.Table;
 public class PolicyScore implements Serializable {
        
        private static final long serialVersionUID = 1L;
-
-       private static String domain;
        
        @Id
        @GeneratedValue(strategy = GenerationType.AUTO)
@@ -61,18 +59,6 @@ public class PolicyScore implements Serializable {
        @Column(name="POLICY_SCORE", nullable=true)
        private String PolicyScore;
        
-       public PolicyScore() {
-               // Empty constructor
-       }
-       
-       public PolicyScore(String pName, String pScore) {
-               this(domain);
-               
-       }
-       public PolicyScore(String domain) {
-               // Empty constructor
-       }
-       
        public int getId() {
                return id;
        }