Uses of Class
com.mycompany.model.Venue

Packages that use Venue
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 Venue in com.mycompany.controller
 

Methods in com.mycompany.controller that return Venue
 Venue VenueController.getVenue()
           
 

Methods in com.mycompany.controller that return types with arguments of type Venue
 java.util.List<Venue> VenueController.getVenues()
           
 

Methods in com.mycompany.controller with parameters of type Venue
 void VenueController.setVenue(Venue venue)
           
 

Uses of Venue in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type Venue
static javax.persistence.metamodel.SingularAttribute<Venue,City> Venue_.city
           
static javax.persistence.metamodel.SingularAttribute<Venue,Country> Venue_.country
           
static javax.persistence.metamodel.SetAttribute<Venue,Event> Venue_.events
           
static javax.persistence.metamodel.SingularAttribute<Venue,java.lang.Integer> Venue_.hashCode
           
static javax.persistence.metamodel.SingularAttribute<Venue,java.lang.String> Venue_.name
           
static javax.persistence.metamodel.SingularAttribute<Venue,java.lang.String> Venue_.phoneNumber
           
static javax.persistence.metamodel.SingularAttribute<Venue,ProvinceState> Venue_.provinceState
           
static javax.persistence.metamodel.SingularAttribute<Venue,java.lang.String> Venue_.streetAddress
           
static javax.persistence.metamodel.SingularAttribute<Event,Venue> Event_.venue
           
 

Methods in com.mycompany.model that return Venue
 Venue Event.getVenue()
           
 

Methods in com.mycompany.model with parameters of type Venue
 void Event.setVenue(Venue venue)
           
 

Uses of Venue in com.mycompany.service
 

Methods in com.mycompany.service that return Venue
 Venue VenueService.findVenueById(java.lang.Integer id)
          Finds a Venue object by ID.
 Venue VenueService.saveVenue(Venue venue)
          Saves a Venue object.
 

Methods in com.mycompany.service that return types with arguments of type Venue
 java.util.List<Venue> VenueService.findVenues()
          Finds a List of all Venue objects.
 

Methods in com.mycompany.service with parameters of type Venue
 void VenueService.deleteVenue(Venue venue)
          Deletes a Venue object.
 Venue VenueService.saveVenue(Venue venue)
          Saves a Venue object.
 

Uses of Venue in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return Venue
 Venue VenueServiceImpl.findVenueById(java.lang.Integer id)
          Finds a Venue object by ID.
 Venue VenueServiceImpl.saveVenue(Venue venue)
          Saves a Venue object.
 

Methods in com.mycompany.service.impl that return types with arguments of type Venue
 java.util.List<Venue> VenueServiceImpl.findVenues()
          Finds a List of all Venue objects.
 

Methods in com.mycompany.service.impl with parameters of type Venue
 void VenueServiceImpl.deleteVenue(Venue venue)
          Deletes a Venue object.
 Venue VenueServiceImpl.saveVenue(Venue venue)
          Saves a Venue object.