package org.gcube.common.clients.fw.plugin; import javax.xml.ws.EndpointReference; import org.gcube.common.clients.delegates.ProxyPlugin; /** * A {@link ProxyPlugin} for gCore services. * * @author Fabio Simeoni * * @param the type of service stubs * @param

the type of service proxies */ public interface Plugin extends ProxyPlugin { /** * Returns the gCube class of the service. * * @return the gCube class of the service */ String serviceClass(); /** * Returns the gCube name of the service. * * @return the gCube name of the service */ String serviceName(); }