use of com.symphony.api.bindings.StreamIDHelp in project spring-bot by finos.
the class AbstractGenericInstanceFactory method buildApiWrappers.
/**
* Override this method to change the wrappers used. By default, this just returns the {@link StreamIDHelp}
* wrapper, which you probably want to keep.
*/
protected List<ApiWrapper> buildApiWrappers(PodProperties pp, ID id, EndpointProperties ep) {
List<ApiWrapper> out = new ArrayList<>();
out.add(new StreamIDHelp());
return out;
}
Aggregations