Fix formatting in the dashboard
[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("name")
27     String name;
28
29     @JsonProperty("schema")
30     String schema;
31
32     public PolicyType(String name, String schema) {
33         this.name = name;
34         this.schema = schema;
35     }
36
37     public String getName() {
38         return name;
39     }
40
41     public void setName(String name) {
42         this.name = name;
43     }
44
45     public String getSchema() {
46         return schema;
47     }
48
49     public void setSchema(String schema) {
50         this.schema = schema;
51     }
52
53     @Override
54     public String toString() {
55         return "[name:" + name + ", schema:" + schema + "]";
56     }
57 }