/**
* Find capabilities used the cache if possible, otherwise do the lookup.
*/
public SourceCapabilities findCapabilities(String modelName) throws TeiidComponentException {
SourceCapabilities caps = userCache.get(modelName);
if(caps != null) {
return caps;
}
TranslatorException exception = null;
ModelMetaData model = vdb.getModel(modelName);