JUnit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / AttributeAssignment.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.rest.jpa;
23
24 import java.io.Serializable;
25
26 import javax.persistence.Column;
27 import javax.persistence.Entity;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.GenerationType;
30 import javax.persistence.Id;
31 import javax.persistence.ManyToOne;
32 import javax.persistence.NamedQuery;
33 import javax.persistence.Table;
34
35 import lombok.Data;
36
37 /**
38  * The persistent class for the ObadviceExpressions database table.
39  * 
40  */
41 @Entity
42 @Table(name = "AttributeAssignment")
43 @NamedQuery(name = "AttributeAssignment.findAll", query = "SELECT a FROM AttributeAssignment a")
44 @Data
45 public class AttributeAssignment implements Serializable {
46     private static final long serialVersionUID = 1L;
47
48     public static final String EXPRESSION_APPLY = "Apply";
49     public static final String EXPRESSION_SELECTOR = "AttributeSelector";
50     public static final String EXPRESSION_VALUE = "AttributeValue";
51     public static final String EXPRESSION_FUNCTION = "Function";
52     public static final String EXPRESSION_REFERENCE = "VarableReference";
53     public static final String EXPRESSION_DESIGNATOR = "AttributeDesignator";
54
55     @Id
56     @GeneratedValue(strategy = GenerationType.AUTO)
57     @Column(name = "id")
58     private int id;
59
60     @Column(name = "attribute_id")
61     private int attributeId;
62
63     // bi-directional many-to-one association to Obadvice
64     @Column(name = "expression", nullable = false)
65     private String expression;
66
67     // bi-directional many-to-one association to Obadvice
68     @ManyToOne
69     private Obadvice obadvice;
70
71     public AttributeAssignment() {
72         // An empty constructor
73     }
74 }