Uses of Interface
org.broadleafcommerce.cms.structure.domain.StructuredContent

Packages that use StructuredContent
org.broadleafcommerce.cms.admin.server.handler   
org.broadleafcommerce.cms.structure.dao   
org.broadleafcommerce.cms.structure.domain   
org.broadleafcommerce.cms.structure.service   
 

Uses of StructuredContent in org.broadleafcommerce.cms.admin.server.handler
 

Methods in org.broadleafcommerce.cms.admin.server.handler with parameters of type StructuredContent
protected  void StructuredContentCustomPersistenceHandler.addRule(Entity entity, StructuredContent structuredContentInstance, String propertyName, StructuredContentRuleType type)
           
protected  void StructuredContentCustomPersistenceHandler.addRulesToEntity(StructuredContent structuredContent, Entity structuredContentEntity)
           
protected  void StructuredContentCustomPersistenceHandler.updateRule(Entity entity, StructuredContent structuredContentInstance, String propertyName, StructuredContentRuleType type)
           
 

Uses of StructuredContent in org.broadleafcommerce.cms.structure.dao
 

Methods in org.broadleafcommerce.cms.structure.dao that return StructuredContent
 StructuredContent StructuredContentDaoImpl.addOrUpdateContentItem(StructuredContent content)
           
 StructuredContent StructuredContentDao.addOrUpdateContentItem(StructuredContent content)
          Persists the changes or saves a new content item.
 StructuredContent StructuredContentDaoImpl.findStructuredContentById(Long contentId)
           
 StructuredContent StructuredContentDao.findStructuredContentById(Long contentId)
          Returns the StructuredContent item that matches the passed in Id.
 

Methods in org.broadleafcommerce.cms.structure.dao that return types with arguments of type StructuredContent
 List<StructuredContent> StructuredContentDaoImpl.findActiveStructuredContentByNameAndType(SandBox sandBox, StructuredContentType type, String name, Locale locale)
           
 List<StructuredContent> StructuredContentDao.findActiveStructuredContentByNameAndType(SandBox sandBox, StructuredContentType type, String name, Locale locale)
          Called by the DisplayContentTag to locate content based on the current SandBox, StructuredContentType, Name, and Locale.
 List<StructuredContent> StructuredContentDaoImpl.findActiveStructuredContentByType(SandBox sandBox, StructuredContentType type, Locale locale)
           
 List<StructuredContent> StructuredContentDao.findActiveStructuredContentByType(SandBox sandBox, StructuredContentType type, Locale locale)
          Called by the DisplayContentTag to locate content based on the current SandBox, StructuredContentType, and Locale.
 

Methods in org.broadleafcommerce.cms.structure.dao with parameters of type StructuredContent
 StructuredContent StructuredContentDaoImpl.addOrUpdateContentItem(StructuredContent content)
           
 StructuredContent StructuredContentDao.addOrUpdateContentItem(StructuredContent content)
          Persists the changes or saves a new content item.
 void StructuredContentDaoImpl.delete(StructuredContent content)
           
 void StructuredContentDao.delete(StructuredContent content)
          Removes the passed in item from the underlying storage.
 void StructuredContentDaoImpl.detach(StructuredContent sc)
           
 void StructuredContentDao.detach(StructuredContent sc)
          Detaches the item from the JPA session.
 Map<String,StructuredContentField> StructuredContentDaoImpl.readFieldsForStructuredContentItem(StructuredContent sc)
           
 Map<String,StructuredContentField> StructuredContentDao.readFieldsForStructuredContentItem(StructuredContent sc)
           
 

Uses of StructuredContent in org.broadleafcommerce.cms.structure.domain
 

Classes in org.broadleafcommerce.cms.structure.domain that implement StructuredContent
 class StructuredContentImpl
          Created by bpolster.
 

Fields in org.broadleafcommerce.cms.structure.domain declared as StructuredContent
protected  StructuredContent StructuredContentItemCriteriaImpl.structuredContent
           
protected  StructuredContent StructuredContentFieldImpl.structuredContent
           
 

Methods in org.broadleafcommerce.cms.structure.domain that return StructuredContent
 StructuredContent StructuredContentImpl.cloneEntity()
           
 StructuredContent StructuredContent.cloneEntity()
          Builds a copy of this content item.
 StructuredContent StructuredContentField.getStructuredContent()
          Returns the parent StructuredContent item to which this field belongs.
 StructuredContent StructuredContentItemCriteriaImpl.getStructuredContent()
           
 StructuredContent StructuredContentItemCriteria.getStructuredContent()
          Returns the parent StructuredContent item to which this field belongs.
 StructuredContent StructuredContentFieldImpl.getStructuredContent()
           
 

Methods in org.broadleafcommerce.cms.structure.domain with parameters of type StructuredContent
 void StructuredContentField.setStructuredContent(StructuredContent structuredContent)
          Sets the parent StructuredContent item.
 void StructuredContentItemCriteriaImpl.setStructuredContent(StructuredContent structuredContent)
           
 void StructuredContentItemCriteria.setStructuredContent(StructuredContent structuredContent)
          Sets the parent StructuredContent item.
 void StructuredContentFieldImpl.setStructuredContent(StructuredContent structuredContent)
           
 

Uses of StructuredContent in org.broadleafcommerce.cms.structure.service
 

Methods in org.broadleafcommerce.cms.structure.service that return StructuredContent
 StructuredContent StructuredContentService.addStructuredContent(StructuredContent content, SandBox destinationSandbox)
          This method is intended to be called from within the CMS admin only.
 StructuredContent StructuredContentServiceImpl.addStructuredContent(StructuredContent content, SandBox destinationSandbox)
           
 StructuredContent StructuredContentService.findStructuredContentById(Long contentId)
          Returns the StructuredContent item associated with the passed in id.
 StructuredContent StructuredContentServiceImpl.findStructuredContentById(Long contentId)
           
 StructuredContent StructuredContentService.updateStructuredContent(StructuredContent content, SandBox sandbox)
          This method is intended to be called from within the CMS admin only.
 StructuredContent StructuredContentServiceImpl.updateStructuredContent(StructuredContent content, SandBox destSandbox)
           
 

Methods in org.broadleafcommerce.cms.structure.service that return types with arguments of type StructuredContent
 List<StructuredContent> StructuredContentService.findContentItems(SandBox sandbox, org.hibernate.Criteria criteria)
          This method is intended to be called solely from the CMS admin.
 List<StructuredContent> StructuredContentServiceImpl.findContentItems(SandBox sandbox, org.hibernate.Criteria c)
           
 List<StructuredContent> StructuredContentService.lookupStructuredContentItemsByName(SandBox sandBox, StructuredContentType contentType, String contentName, Locale locale, Integer count, Map<String,Object> ruleDTOs)
          This method returns content
Returns active content items for the passed in sandbox that match the passed in type.
 List<StructuredContent> StructuredContentServiceImpl.lookupStructuredContentItemsByName(SandBox sandBox, StructuredContentType contentType, String contentName, Locale locale, Integer count, Map<String,Object> ruleDTOs)
           
 List<StructuredContent> StructuredContentService.lookupStructuredContentItemsByType(SandBox sandBox, StructuredContentType contentType, Locale locale, Integer count, Map<String,Object> ruleDTOs)
          This method returns content
Returns active content items for the passed in sandbox that match the passed in type.
 List<StructuredContent> StructuredContentServiceImpl.lookupStructuredContentItemsByType(SandBox sandBox, StructuredContentType contentType, Locale locale, Integer count, Map<String,Object> ruleDTOs)
           
 

Methods in org.broadleafcommerce.cms.structure.service with parameters of type StructuredContent
 StructuredContent StructuredContentService.addStructuredContent(StructuredContent content, SandBox destinationSandbox)
          This method is intended to be called from within the CMS admin only.
 StructuredContent StructuredContentServiceImpl.addStructuredContent(StructuredContent content, SandBox destinationSandbox)
           
 boolean StructuredContentDefaultRuleProcessor.checkForMatch(StructuredContent sc, Map<String,Object> vars)
          Returns true if all of the rules associated with the passed in StructuredContent item match based on the passed in vars.
 boolean StructuredContentRuleProcessor.checkForMatch(StructuredContent sc, Map<String,Object> valueMap)
          Returns true if the passed in StructuredContent is valid according to this rule processor.
 void StructuredContentService.deleteStructuredContent(StructuredContent content, SandBox destinationSandbox)
          If deleting and item where content.originalItemId != null then the item is deleted from the database.
 void StructuredContentServiceImpl.deleteStructuredContent(StructuredContent content, SandBox destinationSandbox)
           
 StructuredContent StructuredContentService.updateStructuredContent(StructuredContent content, SandBox sandbox)
          This method is intended to be called from within the CMS admin only.
 StructuredContent StructuredContentServiceImpl.updateStructuredContent(StructuredContent content, SandBox destSandbox)
           
 



Copyright © 2011. All Rights Reserved.