Merge "Convert tabs to spaces basic refactoring"
[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         //An empty constructor
69     }
70
71     public int getId() {
72         return this.id;
73     }
74
75     public void setId(int id) {
76         this.id = id;
77     }
78
79     public int getAttributeId() {
80         return this.attributeId;
81     }
82
83     public void setAttributeId(int attributeId) {
84         this.attributeId = attributeId;
85     }
86
87     public String getExpression() {
88         return expression;
89     }
90
91     public void setExpression(String expression) {
92         this.expression = expression;
93     }
94 }