Change artifactId in sal-rest-docgen
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / openapi / Components.java
diff --git a/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/openapi/Components.java b/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/openapi/Components.java
deleted file mode 100644 (file)
index 1b61631..0000000
+++ /dev/null
@@ -1,36 +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.ObjectNode;
-
-public class Components {
-    private ObjectNode schemas;
-    private SecuritySchemes securitySchemes;
-
-    public Components(ObjectNode schemas, SecuritySchemes securitySchemes) {
-        this.schemas = schemas;
-        this.securitySchemes = securitySchemes;
-    }
-
-    public ObjectNode getSchemas() {
-        return schemas;
-    }
-
-    public void setSchemas(ObjectNode schemas) {
-        this.schemas = schemas;
-    }
-
-    public SecuritySchemes getSecuritySchemes() {
-        return securitySchemes;
-    }
-
-    public void setSecuritySchemes(SecuritySchemes securitySchemes) {
-        this.securitySchemes = securitySchemes;
-    }
-}