Package org.cedj.geekseek.web.rest.conference.model

Examples of org.cedj.geekseek.web.rest.conference.model.SessionRepresentation


        return SessionRepresentation.class;
    }

    @Test
    public void shouldNotAllowEndBeforeStart() throws Exception {
        SessionRepresentation rep = new SessionRepresentation();
        rep.setTitle("Title");
        rep.setOutline("Outline");
        rep.setEnd(new Date(System.currentTimeMillis()-3000));
        rep.setStart(new Date());

        assertValidationConstraint(rep, "EndBeforeStart", "end");
    }
View Full Code Here

TOP

Related Classes of org.cedj.geekseek.web.rest.conference.model.SessionRepresentation

Copyright © 2018 www.massapicom. 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.