diff --git a/distro/changelog.xml b/distro/changelog.xml index d556f22..a862f5d 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,5 +1,8 @@ - + First Release + + internal refactoring + \ No newline at end of file diff --git a/pom.xml b/pom.xml index aaa0ed4..9c21e46 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ org.gcube.core common-fw-clients - 1.0.0-SNAPSHOT + 1.1.0-SNAPSHOT Common Featherweight gCore Client A binding of the CL Framework to the Featherwieght Stack for gCore service clients. diff --git a/src/main/java/org/gcube/common/clients/fw/plugin/Plugin.java b/src/main/java/org/gcube/common/clients/fw/plugin/Plugin.java index 0db86bc..5c82455 100644 --- a/src/main/java/org/gcube/common/clients/fw/plugin/Plugin.java +++ b/src/main/java/org/gcube/common/clients/fw/plugin/Plugin.java @@ -15,16 +15,8 @@ import org.gcube.common.clients.delegates.ProxyPlugin; public interface Plugin extends ProxyPlugin { /** - * Returns the gCube class of the service. - * - * @return the gCube class of the service + * Returns the namespace of the service. + * @return the namespace */ - String serviceClass(); - - /** - * Returns the gCube name of the service. - * - * @return the gCube name of the service - */ - String serviceName(); + String namespace(); }