net.spals.appbuilder.graph.model.IServiceGraphVertex Maven / Gradle / Ivy
The newest version!
package net.spals.appbuilder.graph.model;
import com.google.inject.Key;
/**
* Interface definition of a vertex
* which appears in a {@link ServiceGraph}
* instance.
*
* @author tkral
*/
public interface IServiceGraphVertex {
Key getGuiceKey();
T getServiceInstance();
String toString(String separator);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy