Examples of RosterCategoryDTO


Examples of org.libreplan.importers.tim.RosterCategoryDTO

        periods.add(periodeDTO);

        DepartmentDTO departmentDTO = new DepartmentDTO();
        departmentDTO.setRef("4");

        RosterCategoryDTO rosterCategoryDTO = new RosterCategoryDTO();
        rosterCategoryDTO.setName(new String());
        List<RosterCategoryDTO> rosterCategories = new ArrayList<RosterCategoryDTO>();
        rosterCategories.add(rosterCategoryDTO);

        FilterDTO filterDTO = new FilterDTO();
        filterDTO.setPeriods(periods);
View Full Code Here

Examples of org.libreplan.importers.tim.RosterCategoryDTO

     * This is an indication to Tim server that it should include this
     * RosterCategory information in the RESPONSE message
     */
    private List<RosterCategoryDTO> createEmptyRosterCategory() {
        List<RosterCategoryDTO> rosterCategorieDTOs = new ArrayList<RosterCategoryDTO>();
        RosterCategoryDTO rosterCategoryDTO = new RosterCategoryDTO();
        rosterCategoryDTO.setName(new String());
        rosterCategorieDTOs.add(rosterCategoryDTO);
        return rosterCategorieDTOs;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.