Examples of CalendarExceptionTypeListDTO


Examples of org.libreplan.ws.calendarexceptiontypes.api.CalendarExceptionTypeListDTO

    @Override
    @GET
    @Transactional(readOnly = true)
    public CalendarExceptionTypeListDTO getCalendarExceptionType() {
        return new CalendarExceptionTypeListDTO(findAll());
    }
View Full Code Here

Examples of org.libreplan.ws.calendarexceptiontypes.api.CalendarExceptionTypeListDTO

    }

    @Test
    @Transactional
    public void exportExceptionTypes() {
        CalendarExceptionTypeListDTO list = calendarExceptionTypeService
                .getCalendarExceptionType();
        assertTrue(list.calendarExceptionTypes.isEmpty());
    }
View Full Code Here

Examples of org.libreplan.ws.calendarexceptiontypes.api.CalendarExceptionTypeListDTO

    @Test
    @Transactional
    public void exportExceptionTypes2() {
        CalendarExceptionType calendarExceptionType = givenCalendarExceptionTypeStored();

        CalendarExceptionTypeListDTO list = calendarExceptionTypeService
                .getCalendarExceptionType();
        assertThat(list.calendarExceptionTypes.size(), equalTo(1));

        CalendarExceptionTypeDTO calendarExceptionTypeDTO = list.calendarExceptionTypes
                .get(0);
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.