Interface DocumentCategoryService
-
- All Superinterfaces:
CRUDService<DocumentCategoryDTO,DocumentCategoryData,Void>,Service
- All Known Subinterfaces:
DocumentCategoryServiceLocal
public interface DocumentCategoryService extends CRUDService<DocumentCategoryDTO,DocumentCategoryData,Void>
Service interface for document category
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<DocumentCategoryVO>list()Returns all document categoriesvoidsaveOrder(@NotNull List<Long> ids)Saves document categories order-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<DocumentCategoryVO> list() throws FrameworkException
Returns all document categories- Throws:
FrameworkException
-
saveOrder
void saveOrder(@NotNull @NotNull List<Long> ids) throws FrameworkExceptionSaves document categories order- Throws:
FrameworkException
-
-