Package org.cyclos.services.users
Interface UserSectionService
-
- All Superinterfaces:
CRUDService<UserSectionDTO,UserSectionData,Void>,Service
- All Known Subinterfaces:
UserSectionServiceLocal
public interface UserSectionService extends CRUDService<UserSectionDTO,UserSectionData,Void>
Service interface for sections of fields inside a user
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<UserSectionVO>list()Returns all sectionsvoidmove(@NotNull Long id, boolean up)Moves the given section in order, either up or down-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<UserSectionVO> list() throws FrameworkException
Returns all sections- Throws:
FrameworkException
-
move
void move(@NotNull @NotNull Long id, boolean up) throws FrameworkExceptionMoves the given section in order, either up or down- Throws:
FrameworkException
-
-