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