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

Packages that use StructuredContentType
org.broadleafcommerce.cms.structure.dao   
org.broadleafcommerce.cms.structure.domain   
org.broadleafcommerce.cms.structure.service   
 

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

Methods in org.broadleafcommerce.cms.structure.dao that return StructuredContentType
 StructuredContentType StructuredContentDao.findStructuredContentTypeById(Long contentTypeId)
          Returns the StructuredContentType that matches the passed in contentTypeId.
 StructuredContentType StructuredContentDaoImpl.findStructuredContentTypeById(Long contentTypeId)
           
 StructuredContentType StructuredContentDao.findStructuredContentTypeByName(String name)
          Used to lookup the StructuredContentType by name.
 StructuredContentType StructuredContentDaoImpl.findStructuredContentTypeByName(String name)
           
 

Methods in org.broadleafcommerce.cms.structure.dao that return types with arguments of type StructuredContentType
 List<StructuredContentType> StructuredContentDao.retrieveAllStructuredContentTypes()
          Returns the list of all StructuredContentTypes.
 List<StructuredContentType> StructuredContentDaoImpl.retrieveAllStructuredContentTypes()
           
 

Methods in org.broadleafcommerce.cms.structure.dao with parameters of type StructuredContentType
 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.findActiveStructuredContentByNameAndType(SandBox sandBox, StructuredContentType type, String name, 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.
 List<StructuredContent> StructuredContentDaoImpl.findActiveStructuredContentByType(SandBox sandBox, StructuredContentType type, Locale locale)
           
 

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

Classes in org.broadleafcommerce.cms.structure.domain that implement StructuredContentType
 class StructuredContentTypeImpl
          Created by bpolster.
 

Fields in org.broadleafcommerce.cms.structure.domain declared as StructuredContentType
protected  StructuredContentType StructuredContentImpl.structuredContentType
           
 

Methods in org.broadleafcommerce.cms.structure.domain that return StructuredContentType
 StructuredContentType StructuredContentImpl.getStructuredContentType()
           
 StructuredContentType StructuredContent.getStructuredContentType()
          Gets the StructuredContentType associated with this content item.
 

Methods in org.broadleafcommerce.cms.structure.domain with parameters of type StructuredContentType
 void StructuredContentImpl.setStructuredContentType(StructuredContentType structuredContentType)
           
 void StructuredContent.setStructuredContentType(StructuredContentType structuredContentType)
          Sets the StructuredContentType associated with this content item.
 

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

Methods in org.broadleafcommerce.cms.structure.service that return StructuredContentType
 StructuredContentType StructuredContentServiceImpl.findStructuredContentTypeById(Long id)
           
 StructuredContentType StructuredContentService.findStructuredContentTypeById(Long id)
          Returns the StructuredContentType associated with the passed in id.
 StructuredContentType StructuredContentServiceImpl.findStructuredContentTypeByName(String name)
           
 StructuredContentType StructuredContentService.findStructuredContentTypeByName(String name)
          Returns the StructuredContentType associated with the passed in String value.
 

Methods in org.broadleafcommerce.cms.structure.service that return types with arguments of type StructuredContentType
 List<StructuredContentType> StructuredContentServiceImpl.retrieveAllStructuredContentTypes()
           
 List<StructuredContentType> StructuredContentService.retrieveAllStructuredContentTypes()
           
 

Methods in org.broadleafcommerce.cms.structure.service with parameters of type StructuredContentType
 List<StructuredContentDTO> StructuredContentServiceImpl.lookupStructuredContentItemsByName(SandBox sandBox, StructuredContentType contentType, String contentName, Locale locale, Integer count, Map<String,Object> ruleDTOs, boolean secure)
           
 List<StructuredContentDTO> StructuredContentService.lookupStructuredContentItemsByName(SandBox sandBox, StructuredContentType contentType, String contentName, Locale locale, Integer count, Map<String,Object> ruleDTOs, boolean secure)
          This method returns content by name and type.
 List<StructuredContentDTO> StructuredContentServiceImpl.lookupStructuredContentItemsByType(SandBox sandBox, StructuredContentType contentType, Locale locale, Integer count, Map<String,Object> ruleDTOs, boolean secure)
           
 List<StructuredContentDTO> StructuredContentService.lookupStructuredContentItemsByType(SandBox sandBox, StructuredContentType contentType, Locale locale, Integer count, Map<String,Object> ruleDTOs, boolean secure)
          This method returns content
Returns active content items for the passed in sandbox that match the passed in type.
 



Copyright © 2012. All Rights Reserved.