Package org.cyclos.services.messaging
Interface MessageCategoryService
-
- All Superinterfaces:
CRUDService<MessageCategoryDTO,MessageCategoryData,Void>,Service
- All Known Subinterfaces:
MessageCategoryServiceLocal
public interface MessageCategoryService extends CRUDService<MessageCategoryDTO,MessageCategoryData,Void>
Service interface for message categories
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<MessageCategoryVO>list()Lists all message categoriesvoidsaveOrder(@NotNull List<Long> ids)Saves the order according to the given category ids-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<MessageCategoryVO> list() throws FrameworkException
Lists all message categories- Throws:
FrameworkException
-
saveOrder
void saveOrder(@NotNull @NotNull List<Long> ids) throws FrameworkExceptionSaves the order according to the given category ids- Throws:
FrameworkException
-
-