Change artifactId in sal-rest-docgen
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / openapi / SecuritySchemes.java
diff --git a/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/openapi/SecuritySchemes.java b/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/openapi/SecuritySchemes.java
deleted file mode 100644 (file)
index 2197385..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2023 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 SecuritySchemes {
-    private ObjectNode basicAuth;
-
-    public SecuritySchemes(ObjectNode basicAuth) {
-        this.basicAuth = basicAuth;
-    }
-
-    public ObjectNode getBasicAuth() {
-        return basicAuth;
-    }
-
-    public void setBasicAuth(ObjectNode basicAuth) {
-        this.basicAuth = basicAuth;
-    }
-}