@RequestMapping(method = RequestMethod.GET, value = "/{kind}/read/{schema}")
public SchemaTO read(@PathVariable("kind") final String kind, @PathVariable("schema") final String schemaName)
throws NotFoundException {
AttributableUtil attributableUtil = getAttributableUtil(kind);
AbstractSchema schema = schemaDAO.find(schemaName, attributableUtil.schemaClass());
if (schema == null) {
throw new NotFoundException("Schema '" + schemaName + "'");
}
auditManager.audit(Category.schema, SchemaSubCategory.read, Result.success,