9d82b7325bf3c8f1e25f983ba1668a16a1de0286
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / ObadviceExpression.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017-2018 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
21 package org.onap.policy.rest.jpa;
22
23 import java.io.Serializable;
24
25 import javax.persistence.Column;
26 import javax.persistence.Entity;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.GenerationType;
29 import javax.persistence.Id;
30 import javax.persistence.JoinColumn;
31 import javax.persistence.ManyToOne;
32 import javax.persistence.NamedQuery;
33 import javax.persistence.OneToOne;
34 import javax.persistence.Table;
35
36
37 /**
38  * The persistent class for the ObadviceExpressions database table.
39  * 
40  */
41 @Entity
42 @Table(name="ObadviceExpressions")
43 @NamedQuery(name="ObadviceExpression.findAll", query="SELECT o FROM ObadviceExpression o")
44 public class ObadviceExpression implements Serializable {
45     private static final long serialVersionUID = 1L;
46
47     public static final String EXPRESSION_APPLY = "Apply";
48     public static final String EXPRESSION_SELECTOR = "Attribute Selector";
49     public static final String EXPRESSION_VALUE = "Attribute Value";
50     public static final String EXPRESSION_FUNCTION = "Function";
51     public static final String EXPRESSION_REFERENCE = "Varable Reference";
52     public static final String EXPRESSION_DESIGNATOR = "Attribute Designator";
53
54     @Id
55     @GeneratedValue(strategy = GenerationType.AUTO)
56     @Column(name="id")
57     private int id;
58
59     //unidirectional one-to-one association to Attribute
60     @OneToOne
61     @JoinColumn(name="attribute_id")
62     private Attribute attribute;
63
64     @Column(name="type", nullable=false)
65     private String type;
66
67     //bi-directional many-to-one association to Obadvice
68     @ManyToOne
69     @JoinColumn(name="obadvice_id")
70     private Obadvice obadvice;
71
72     public ObadviceExpression() {
73         type = EXPRESSION_VALUE;
74     }
75
76     public int getId() {
77         return this.id;
78     }
79
80     public void setId(int id) {
81         this.id = id;
82     }
83
84     public Attribute getAttribute() {
85         return this.attribute;
86     }
87
88     public void setAttribute(Attribute attribute) {
89         this.attribute = attribute;
90     }
91
92     public String getType() {
93         return this.type;
94     }
95
96     public void setType(String type) {
97         this.type = type;
98     }
99
100     public Obadvice getObadvice() {
101         return this.obadvice;
102     }
103
104     public void setObadvice(Obadvice obadvice) {
105         this.obadvice = obadvice;
106     }
107
108     @Override
109     public ObadviceExpression clone() {
110         ObadviceExpression expression = new ObadviceExpression();
111
112         expression.attribute = this.attribute;
113         expression.type = this.type;
114         expression.obadvice = this.obadvice;
115
116         return expression;
117     }
118 }