new ImportContextJSONFormat(MediaType.TEXT_HTML));
}
@Override
public void handleGet() {
DataFormat formatGet = getFormatGet();
if (formatGet == null) {
formatGet = new ImportContextJSONFormat(MediaType.APPLICATION_JSON);
}
Object lookupContext = lookupContext(true, false);
if (lookupContext == null) {
// this means a specific lookup failed
getResponse().setStatus(Status.CLIENT_ERROR_NOT_FOUND);
} else {
getResponse().setEntity(formatGet.toRepresentation(lookupContext));
}
}