Move swagger classes into openapi package
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / openapi / Info.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.sal.rest.doc.openapi;
9
10 public class Info {
11     private String version;
12     private String title;
13
14     public String getVersion() {
15         return version;
16     }
17
18     public void setVersion(String version) {
19         this.version = version;
20     }
21
22     public String getTitle() {
23         return title;
24     }
25
26     public void setTitle(String title) {
27         this.title = title;
28     }
29 }