protected boolean runtimeExists(PlaygroundEnvironment env, String name) {
Endpoint ep = EndpointFactory.getEndpointUnchecked(name);
if(ep!=null) {
try {
// Check if the endpoint is valid and return true if so.
ep.checkValid();
return true;
} catch(Exception ex) {}
return false;
}
return super.runtimeExists(env, name);