d24667aa8e386af955338880b7f25123707e507a
[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("description")
33         String description;
34
35         @JsonProperty("create_schema")
36         String createSchema;
37
38         public PolicyType(Integer policyId, String name, String description, String createSchema) {
39                 this.policyTypeId = policyId;
40                 this.name = name;
41                 this.description = description;
42                 this.createSchema = createSchema;
43         }
44
45         public Integer getPolicyTypeId() {
46                 return policyTypeId;
47         }
48
49         public void setPolicyTypeId(Integer policyTypeId) {
50                 this.policyTypeId = policyTypeId;
51         }
52
53         public String getName() {
54                 return name;
55         }
56
57         public void setName(String name) {
58                 this.name = name;
59         }
60
61         public String getDescription() {
62                 return description;
63         }
64
65         public void setDescription(String description) {
66                 this.description = description;
67         }
68
69         public String getCreateSchema() {
70                 return createSchema;
71         }
72
73         public void setCreateSchema(String createSchema) {
74                 this.createSchema = createSchema;
75         }
76
77         @Override
78         public String toString() {
79                 return "[policy_type_id:" + policyTypeId +  ", name:" + name + ", description:" + description + ", create_schema:" + createSchema + "]";
80         }
81 }