Updated displaying of policy types
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / PolicyType.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.oransc.ric.portal.dashboard.model;
21
22 import com.fasterxml.jackson.annotation.JsonProperty;
23
24 public class PolicyType {
25
26         @JsonProperty("policy_type_id")
27         Integer policyTypeId;
28
29         @JsonProperty("name")
30         String name;
31
32         @JsonProperty("schema")
33         String schema;
34
35         public PolicyType(Integer policyId, String name, String schema) {
36                 this.policyTypeId = policyId;
37                 this.name = name;
38                 this.schema = schema;
39         }
40
41         public Integer getPolicyTypeId() {
42                 return policyTypeId;
43         }
44
45         public void setPolicyTypeId(Integer policyTypeId) {
46                 this.policyTypeId = policyTypeId;
47         }
48
49         public String getName() {
50                 return name;
51         }
52
53         public void setName(String name) {
54                 this.name = name;
55         }
56
57         public String getSchema() {
58                 return schema;
59         }
60
61         public void setSchema(String schema) {
62                 this.schema = schema;
63         }
64
65         @Override
66         public String toString() {
67                 return "[policy_type_id:" + policyTypeId + ", name:" + name + ", schema:" + schema + "]";
68         }
69 }