Unit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / jpa / MicroServiceModels.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2017-2019 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.JoinColumn;
32 import javax.persistence.ManyToOne;
33 import javax.persistence.NamedQueries;
34 import javax.persistence.NamedQuery;
35 import javax.persistence.OrderBy;
36 import javax.persistence.Table;
37 /*
38  * JPA for the Micro Service Models.
39  *
40  * @version: 0.1
41  */
42
43 import lombok.Getter;
44 import lombok.Setter;
45
46 // @formatter:off
47 @Entity
48 @Table(name = "MicroServiceModels")
49 @NamedQueries(
50     {
51         @NamedQuery(name = "MicroServiceModels.findAll", query = "SELECT b FROM MicroServiceModels b "),
52         @NamedQuery(
53                         name = "MicroServiceModels.findAllDecision",
54                         query = "SELECT b FROM MicroServiceModels b WHERE b.decisionModel=1")
55     }
56 )
57 @Getter
58 @Setter
59 // @formatter:on
60 public class MicroServiceModels implements Serializable {
61     private static final long serialVersionUID = 1L;
62
63     @Id
64     @GeneratedValue(strategy = GenerationType.AUTO)
65     @Column(name = "id")
66     private int id;
67
68     @Column(name = "modelName", nullable = false, unique = true)
69     @OrderBy("asc")
70     private String modelName;
71
72     @Column(name = "description", nullable = true, length = 2048)
73     private String description;
74
75     @Column(name = "dependency", nullable = true, length = 2048)
76     private String dependency;
77
78     @Column(name = "attributes", nullable = false, length = 255)
79     private String attributes;
80
81     @Column(name = "ref_attributes", nullable = false, length = 255)
82     private String refAttributes;
83
84     @Column(name = "sub_attributes", nullable = false, length = 2000)
85     private String subAttributes;
86
87     @Column(name = "dataOrderInfo", nullable = true, length = 2000)
88     private String dataOrderInfo;
89
90     @Column(name = "version", nullable = false, length = 2000)
91     private String version;
92
93     @Column(name = "enumValues", nullable = false, length = 2000)
94     private String enumValues;
95
96     @Column(name = "annotation", nullable = false, length = 2000)
97     private String annotation;
98
99     @Column(name = "decisionModel", nullable = true)
100     private Boolean decisionModel = false;
101
102     @Column(name = "ruleFormation", nullable = true)
103     private String ruleFormation;
104
105     @ManyToOne
106     @JoinColumn(name = "imported_by")
107     private UserInfo userCreatedBy;
108
109     public boolean isDecisionModel() {
110         return decisionModel;
111     }
112 }