Change artifactId in sal-rest-docgen
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / openapi / OpenApiObject.java
diff --git a/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/openapi/OpenApiObject.java b/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/openapi/OpenApiObject.java
deleted file mode 100644 (file)
index dd23124..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.netconf.sal.rest.doc.openapi;
-
-import com.fasterxml.jackson.databind.node.ArrayNode;
-import java.util.List;
-import java.util.Map;
-
-public class OpenApiObject {
-    private String openapi;
-    private Info info;
-    private List<Server> servers;
-    private Map<String, Path> paths;
-    private Components components;
-    private ArrayNode security;
-
-    public String getOpenapi() {
-        return openapi;
-    }
-
-    public void setOpenapi(String openapi) {
-        this.openapi = openapi;
-    }
-
-    public Info getInfo() {
-        return info;
-    }
-
-    public void setInfo(Info info) {
-        this.info = info;
-    }
-
-    public List<Server> getServers() {
-        return servers;
-    }
-
-    public void setServers(List<Server> servers) {
-        this.servers = servers;
-    }
-
-    public Map<String, Path> getPaths() {
-        return paths;
-    }
-
-    public void setPaths(Map<String, Path> paths) {
-        this.paths = paths;
-    }
-
-    public Components getComponents() {
-        return components;
-    }
-
-    public void setComponents(Components components) {
-        this.components = components;
-    }
-
-    public ArrayNode getSecurity() {
-        return security;
-    }
-
-    public void setSecurity(ArrayNode security) {
-        this.security = security;
-    }
-}