use of ddf.catalog.transformer.output.rtf.model.RtfCategory in project ddf by codice.
the class BaseTestConfiguration method categoryFor.
private static RtfCategory categoryFor(String name) {
RtfCategory category = new ExportCategory();
category.setAttributes(Arrays.asList(EMPTY_ATTRIBUTE, SIMPLE_ATTRIBUTE, Core.THUMBNAIL, UNKNOWN_ATTRIBUTE, EXTENDED_ATTRIBUTE));
category.setTitle(name);
return category;
}
Aggregations