Uses of Class
com.mycompany.model.Content

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

Methods in com.mycompany.controller that return Content
 Content ContentController.getContent()
           
 

Methods in com.mycompany.controller with parameters of type Content
 void ContentController.setContent(Content content)
           
 

Uses of Content in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type Content
static javax.persistence.metamodel.SingularAttribute<Content,User> Content_.createdBy
           
static javax.persistence.metamodel.SingularAttribute<Content,java.util.Date> Content_.createdDate
           
static javax.persistence.metamodel.SingularAttribute<Content,java.lang.String> Content_.value
           
static javax.persistence.metamodel.SingularAttribute<Content,java.lang.String> Content_.viewId
           
 

Uses of Content in com.mycompany.service
 

Methods in com.mycompany.service that return Content
 Content ContentService.findContentByName(java.lang.String name)
          Finds a Content object by name.
 Content ContentService.saveContent(Content content)
          Saves a Content object.
 

Methods in com.mycompany.service with parameters of type Content
 Content ContentService.saveContent(Content content)
          Saves a Content object.
 

Uses of Content in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return Content
 Content ContentServiceImpl.findContentByName(java.lang.String name)
           
 Content ContentServiceImpl.saveContent(Content content)
           
 

Methods in com.mycompany.service.impl with parameters of type Content
 Content ContentServiceImpl.saveContent(Content content)