Uses of Class
com.mycompany.model.Event

Packages that use Event
com.mycompany.controller Contains JSF managed bean controller classes for the application. 
com.mycompany.model Contains JPA domain model classes and generated JPA Metamodel classes. 
com.mycompany.service Contains interfaces for all services in the application. 
com.mycompany.service.impl Contains CDI-managed service classes implemented as EJB3 stateless session beans. 
 

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)
          Finds an Event by ID.
 Event EventServiceImpl.saveEvent(Event event)
          Saves an Event.
 

Methods in com.mycompany.service.impl that return types with arguments of type Event
 java.util.List<Event> EventServiceImpl.findAllEvents()
          Finds all Event objects.
 java.util.List<Event> EventServiceImpl.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> EventServiceImpl.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.impl with parameters of type Event
 EventAttendance EventServiceImpl.findEventAttendance(Event event, User user)
          Finds the EventAttendance object for a particular Event and User.
 Event EventServiceImpl.saveEvent(Event event)
          Saves an Event.