org.hibernate.beanvalidation.tck.tests.constraints.application.method
Class CalendarService

java.lang.Object
  extended by org.hibernate.beanvalidation.tck.tests.constraints.application.method.CalendarService

public class CalendarService
extends Object

Author:
Gunnar Morling

Constructor Summary
CalendarService()
           
CalendarService(Date start, Date end)
           
CalendarService(Date start, Date end, Integer numberOfParticipants)
           
CalendarService(String type)
           
 
Method Summary
 void createEvent(Date start, Date end)
           
 void createEvent(Date start, Date end, Integer numberOfParticipants)
           
static void createEvent(String title, Date start, Date end)
           
 CalendarEvent findEvents(String name)
           
 void setType(String type)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CalendarService

@OnlineCalendarService
public CalendarService()

CalendarService

public CalendarService(@NotNull
                       String type)

CalendarService

@ConsistentDateParameters
public CalendarService(Date start,
                                                Date end)

CalendarService

@ConsistentDateParameters
public CalendarService(@NotNull
                                                Date start,
                                                Date end,
                                                Integer numberOfParticipants)
Method Detail

setType

public void setType(@NotNull
                    String type)

createEvent

@ConsistentDateParameters
public void createEvent(Date start,
                                                 Date end)

createEvent

@ConsistentDateParameters
public void createEvent(@NotNull
                                                 Date start,
                                                 Date end,
                                                 Integer numberOfParticipants)

findEvents

@NotNull
public CalendarEvent findEvents(String name)

createEvent

public static void createEvent(@NotNull
                               String title,
                               @NotNull
                               Date start,
                               @NotNull
                               Date end)


Copyright © 2008-2013. All Rights Reserved.