eu.unicore.services.restclient.ClientCapability Maven / Gradle / Ivy
The newest version!
package eu.unicore.services.restclient;
/**
* a Capability provides information about a concrete implementation of
* some abstract interface
*
* @author schuller
*/
public interface ClientCapability {
/**
* the service interface implemented by the capability
*/
public Class> getInterface();
/**
* the implementation
*/
public Class> getImplementation();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy