7a1be9e7d652298942e63ae54cf0b73243001ef8
[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  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.policy.rest.jpa;
21
22 import java.io.Serializable;
23
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.GeneratedValue;
27 import javax.persistence.GenerationType;
28 import javax.persistence.Id;
29 import javax.persistence.ManyToOne;
30 import javax.persistence.NamedQuery;
31 import javax.persistence.Table;
32
33
34 /**
35  * The persistent class for the ObadviceExpressions database table.
36  * 
37  */
38 @Entity
39 @Table(name="AttributeAssignment")
40 @NamedQuery(name="AttributeAssignment.findAll", query="SELECT a FROM AttributeAssignment a")
41 public class AttributeAssignment implements Serializable {
42         private static final long serialVersionUID = 1L;
43
44         public static final String EXPRESSION_APPLY = "Apply";
45         public static final String EXPRESSION_SELECTOR = "AttributeSelector";
46         public static final String EXPRESSION_VALUE = "AttributeValue";
47         public static final String EXPRESSION_FUNCTION = "Function";
48         public static final String EXPRESSION_REFERENCE = "VarableReference";
49         public static final String EXPRESSION_DESIGNATOR = "AttributeDesignator";
50
51         @Id
52         @GeneratedValue(strategy = GenerationType.AUTO)
53         @Column(name="id")
54         private int id;
55
56         @Column(name="attribute_id")
57         private int attributeId;
58
59         //bi-directional many-to-one association to Obadvice
60         @Column(name="expression", nullable=false)
61         private String expression;
62
63         //bi-directional many-to-one association to Obadvice
64         @ManyToOne
65         private Obadvice obadvice;
66
67         public AttributeAssignment() {
68         }
69
70         public int getId() {
71                 return this.id;
72         }
73
74         public void setId(int id) {
75                 this.id = id;
76         }
77
78         public int getAttributeId() {
79                 return this.attributeId;
80         }
81
82         public void setAttributeId(int attributeId) {
83                 this.attributeId = attributeId;
84         }
85
86         public String getExpression() {
87                 return expression;
88         }
89
90         public void setExpression(String expression) {
91                 this.expression = expression;
92         }
93 }