X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ONAP-REST%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Frest%2Fjpa%2FGroupPolicyScopeList.java;h=8b10083d8f6e2ef64f7b4fd426eacaf9cffefec6;hb=2ee068fed59becbd3327937125264bdcf651f7b8;hp=55c3bd6efc7d6169916fb5639efa1a590554a725;hpb=401b48bc573561f097960a9ca7abe6d788456f28;p=policy%2Fengine.git diff --git a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/GroupPolicyScopeList.java b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/GroupPolicyScopeList.java index 55c3bd6ef..8b10083d8 100644 --- a/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/GroupPolicyScopeList.java +++ b/ONAP-REST/src/main/java/org/onap/policy/rest/jpa/GroupPolicyScopeList.java @@ -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,8 +30,6 @@ 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; @@ -39,74 +37,51 @@ import javax.persistence.Table; @Table(name="GroupPolicyScopeList") @NamedQuery(name="GroupPolicyScopeList.findAll", query="SELECT e FROM GroupPolicyScopeList e ") public class GroupPolicyScopeList 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="name", nullable=false) - @OrderBy("asc") - private String name; - - @Column(name="groupList") - private String groupList; - - @Column(name="description") - private String description; + @Column(name="name", nullable=false) + @OrderBy("asc") + private String name; - public GroupPolicyScopeList() { - //An empty constructor - } - public GroupPolicyScopeList(String string, String userid) { - this(domain); - - } - public GroupPolicyScopeList(String domain) { - //An empty constructor - } + @Column(name="groupList") + private String groupList; - @PrePersist - public void prePersist() { - //An empty function - } - @PreUpdate - public void preUpdate() { - //An empty function - } + @Column(name="description") + private String description; - - public int getId() { - return this.id; - } + public int getId() { + return this.id; + } - public void setId(int id) { - this.id = id; - } - public String getGroupName() { - return this.name; - } + public void setId(int id) { + this.id = id; + } + public String getGroupName() { + return this.name; + } - public void setGroupName(String serviceName) { - this.name = serviceName; + public void setGroupName(String serviceName) { + this.name = serviceName; - } - - public String getGroupList() { - return this.groupList; - } + } - public void setGroupList(String groupList) { - this.groupList = groupList; + public String getGroupList() { + return this.groupList; + } - } - public String getDescription() { - return description; - } - public void setDescription(String description) { - this.description = description; - } + public void setGroupList(String groupList) { + this.groupList = groupList; + + } + public String getDescription() { + return description; + } + public void setDescription(String description) { + this.description = description; + } }