Uses of Class
com.mycompany.model.Event

Packages that use Event
com.mycompany.controller   
com.mycompany.model   
com.mycompany.service   
com.mycompany.service.impl   
 

Uses of Event in com.mycompany.controller
 

Methods in com.mycompany.controller that return Event
 Event EventController.getEvent()
          This method returns the currently selected Event.
 Event SearchController.getSelectedEvent()
           
 

Methods in com.mycompany.controller that return types with arguments of type Event
 java.util.List<Event> EventController.getAllEvents()
          This method returns all Event objects in the database.
 

Methods in com.mycompany.controller with parameters of type Event
 void EventController.setEvent(Event event)
          Sets the Event.
 void SearchController.setSelectedEvent(Event selectedEvent)
           
 

Uses of Event in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type Event
static javax.persistence.metamodel.SetAttribute<Event,EventAttendance> Event_.attendance
           
static javax.persistence.metamodel.SingularAttribute<Event,User> Event_.createdBy
           
static javax.persistence.metamodel.SingularAttribute<Event,java.lang.String> Event_.description
           
static javax.persistence.metamodel.SingularAttribute<Event,java.util.Date> Event_.endDate
           
static javax.persistence.metamodel.SingularAttribute<EventAttendance,Event> EventAttendance_.event
           
static javax.persistence.metamodel.SetAttribute<Venue,Event> Venue_.events
           
static javax.persistence.metamodel.SingularAttribute<Event,EventType> Event_.eventType
           
static javax.persistence.metamodel.SingularAttribute<Event,java.lang.Integer> Event_.hashCode
           
static javax.persistence.metamodel.SingularAttribute<Event,java.util.Date> Event_.startDate
           
static javax.persistence.metamodel.SingularAttribute<Event,java.lang.String> Event_.title
           
static javax.persistence.metamodel.SingularAttribute<Event,Venue> Event_.venue
           
 

Methods in com.mycompany.model that return Event
 Event EventAttendance.getEvent()
           
 

Methods in com.mycompany.model that return types with arguments of type Event
 java.util.Set<Event> Venue.getEvents()
           
 

Methods in com.mycompany.model with parameters of type Event
 void EventAttendance.setEvent(Event event)
           
 

Method parameters in com.mycompany.model with type arguments of type Event
 void Venue.setEvents(java.util.Set<Event> events)
           
 

Uses of Event in com.mycompany.service
 

Methods in com.mycompany.service that return Event
 Event EventService.findEventById(java.lang.Integer id)
          Finds an Event by ID.
 Event EventService.saveEvent(Event event)
          Saves an Event.
 

Methods in com.mycompany.service that return types with arguments of type Event
 java.util.List<Event> EventService.findAllEvents()
          Finds all Event objects.
 java.util.List<Event> EventService.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)
          Finds a List of Event objects in a City and ProvinceState for a particular EventType and keyword.
 java.util.List<Event> EventService.findUserEvents(java.util.Date start, java.util.Date end, User user)
          Finds a List of Event objects between a start and end date created by a particular User.
 

Methods in com.mycompany.service with parameters of type Event
 EventAttendance EventService.findEventAttendance(Event event, User user)
          Finds the EventAttendance object for a particular Event and User.
 Event EventService.saveEvent(Event event)
          Saves an Event.
 

Uses of Event in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return Event
 Event EventServiceImpl.findEventById(java.lang.Integer id)
           
 Event EventServiceImpl.saveEvent(Event event)
           
 

Methods in com.mycompany.service.impl that return types with arguments of type Event
 java.util.List<Event> EventServiceImpl.findAllEvents()
           
 java.util.List<Event> EventServiceImpl.findEvents(City city, ProvinceState provinceState, EventType eventType, java.lang.String keyword)
           
 java.util.List<Event> EventServiceImpl.findUserEvents(java.util.Date start, java.util.Date end, User user)
           
 

Methods in com.mycompany.service.impl with parameters of type Event
 EventAttendance EventServiceImpl.findEventAttendance(Event event, User user)
           
 Event EventServiceImpl.saveEvent(Event event)