Adds getScheme()

This commit is contained in:
Spencer Gibb
2018-01-23 00:10:18 -05:00
parent 8dcbd35e98
commit d610fb86b1

View File

@@ -54,4 +54,11 @@ public interface ServiceInstance {
* @return the key value pair metadata associated with the service instance
*/
Map<String, String> getMetadata();
/**
* @return the scheme of the instance
*/
default String getScheme() {
return null;
}
}