From: OleksandrZharov Date: Tue, 9 May 2023 10:42:24 +0000 (+0200) Subject: Refactor org.opendaylight.netconf.sal.rest.doc.jaxrs X-Git-Tag: v6.0.0~102 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=070272b81b77dc77ead5155339ea2224b1a8878b;p=netconf.git Refactor org.opendaylight.netconf.sal.rest.doc.jaxrs Renamed package org.opendaylight.netconf.sal.rest.doc.jaxrs to org.opendaylight.restconf.openapi.jaxrs. JIRA: NETCONF-1011 Change-Id: I0e70e36a0bdacb7efeb8458ae3172767260f190e Signed-off-by: OleksandrZharov Signed-off-by: Ivan Hrasko --- diff --git a/restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/JaxbContextResolver.java b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/JaxbContextResolver.java similarity index 95% rename from restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/JaxbContextResolver.java rename to restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/JaxbContextResolver.java index 2ff206050a..3567af0f92 100644 --- a/restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/JaxbContextResolver.java +++ b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/JaxbContextResolver.java @@ -5,7 +5,7 @@ * 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.jaxrs; +package org.opendaylight.restconf.openapi.jaxrs; import com.fasterxml.jackson.databind.ObjectMapper; import javax.ws.rs.Consumes; diff --git a/restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/OpenApiApplication.java b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/OpenApiApplication.java similarity index 94% rename from restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/OpenApiApplication.java rename to restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/OpenApiApplication.java index 8086dc18fb..31557f72a6 100644 --- a/restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/OpenApiApplication.java +++ b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/OpenApiApplication.java @@ -5,7 +5,7 @@ * 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.jaxrs; +package org.opendaylight.restconf.openapi.jaxrs; import static java.util.Objects.requireNonNull; diff --git a/restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/WebInitializer.java b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/WebInitializer.java similarity index 97% rename from restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/WebInitializer.java rename to restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/WebInitializer.java index f514a1e830..e5c7ac7248 100644 --- a/restconf/restconf-openapi/src/main/java/org/opendaylight/netconf/sal/rest/doc/jaxrs/WebInitializer.java +++ b/restconf/restconf-openapi/src/main/java/org/opendaylight/restconf/openapi/jaxrs/WebInitializer.java @@ -5,7 +5,7 @@ * 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.jaxrs; +package org.opendaylight.restconf.openapi.jaxrs; import javax.annotation.PreDestroy; import javax.inject.Inject;