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

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


        return ConferenceRepresentation.class;
    }

    @Test
    public void shouldNotAllowEndBeforeStart() throws Exception {
        ConferenceRepresentation rep = new ConferenceRepresentation();
        rep.setName("Name");
        rep.setTagLine("TagLine");
        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.ConferenceRepresentation

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.