try {
String accountId = getAuthenticatedAccountId(request);
ServiceSpecification spec = getServiceSpecification(accountId, appId, serviceId);
if (spec != null) {
responder.sendJson(HttpResponseStatus.OK, new ServiceMeta(
spec.getName(), spec.getName(), spec.getDescription(), spec.getRunnables().keySet()));
} else {
responder.sendStatus(HttpResponseStatus.NOT_FOUND);
}
} catch (SecurityException e) {