Package org.cyclos.services.users
Interface RecordSectionService
-
- All Superinterfaces:
CRUDService<RecordSectionDTO,RecordSectionData,RecordTypeVO>,Service
- All Known Subinterfaces:
RecordSectionServiceLocal
public interface RecordSectionService extends CRUDService<RecordSectionDTO,RecordSectionData,RecordTypeVO>
Service interface for sections of fields inside a record type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<RecordSectionVO>list(RecordTypeVO recordType)Returns all sections of the given record typevoidmove(@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<RecordSectionVO> list(RecordTypeVO recordType) throws FrameworkException
Returns all sections of the given record type- Throws:
FrameworkException
-
move
void move(@NotNull @NotNull Long id, boolean up) throws FrameworkExceptionMoves the given section in order, either up or down- Throws:
FrameworkException
-
-