Uses of Class
com.mycompany.model.Content

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

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)