* @return a Sesame in-memory repository containing the triples for this resource
*/
public ClientResponse retrieveResource(URI resource) throws LDClientException {
HttpResponse response = null;
try {
Endpoint endpoint = ldEndpoints.getEndpoint(resource);
if(endpoint != null && endpoint.getType() == Endpoint.EndpointType.NONE) {
return null;
} else if(endpoint != null) {
response = retrieveFromEndpoint(resource,endpoint);
return parseResponse(resource,response,endpoint);
} else if(config.getBoolean("fallback",true)) {