Uses of Interface
org.broadleafcommerce.common.sandbox.domain.SandBox

Packages that use SandBox
org.broadleafcommerce.common.sandbox.dao   
org.broadleafcommerce.common.sandbox.domain   
org.broadleafcommerce.common.sandbox.service   
org.broadleafcommerce.common.web   
org.broadleafcommerce.common.web.expression   
 

Uses of SandBox in org.broadleafcommerce.common.sandbox.dao
 

Methods in org.broadleafcommerce.common.sandbox.dao that return SandBox
 SandBox SandBoxDaoImpl.createDefaultSandBox()
           
 SandBox SandBoxDao.createDefaultSandBox()
           
 SandBox SandBoxDaoImpl.createSandBox(String sandBoxName, SandBoxType sandBoxType)
           
 SandBox SandBoxDao.createSandBox(String sandBoxName, SandBoxType sandBoxType)
           
 SandBox SandBoxDaoImpl.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxDao.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxDaoImpl.persist(SandBox entity)
           
 SandBox SandBoxDao.persist(SandBox entity)
           
 SandBox SandBoxDaoImpl.retrieve(Long id)
           
 SandBox SandBoxDao.retrieve(Long id)
           
 SandBox SandBoxDaoImpl.retrieveNamedSandBox(SandBoxType sandboxType, String sandboxName)
           
 SandBox SandBoxDao.retrieveNamedSandBox(SandBoxType sandboxType, String sandboxName)
           
 SandBox SandBoxDaoImpl.retrieveSandBoxByType(SandBoxType sandboxType)
           
 SandBox SandBoxDao.retrieveSandBoxByType(SandBoxType sandboxType)
           
 SandBox SandBoxDaoImpl.retrieveUserSandBoxForParent(Long authorId, Long parentSandBoxId)
           
 SandBox SandBoxDao.retrieveUserSandBoxForParent(Long authorId, Long parentSandBoxId)
           
 

Methods in org.broadleafcommerce.common.sandbox.dao that return types with arguments of type SandBox
 List<SandBox> SandBoxDaoImpl.retrieveAllSandBoxes()
           
 List<SandBox> SandBoxDao.retrieveAllSandBoxes()
           
 List<SandBox> SandBoxDaoImpl.retrieveSandBoxesByType(SandBoxType sandboxType)
           
 List<SandBox> SandBoxDao.retrieveSandBoxesByType(SandBoxType sandboxType)
           
 List<SandBox> SandBoxDaoImpl.retrieveSandBoxesForAuthor(Long authorId)
           
 List<SandBox> SandBoxDao.retrieveSandBoxesForAuthor(Long authorId)
           
 

Methods in org.broadleafcommerce.common.sandbox.dao with parameters of type SandBox
 SandBox SandBoxDaoImpl.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxDao.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxDaoImpl.persist(SandBox entity)
           
 SandBox SandBoxDao.persist(SandBox entity)
           
 

Uses of SandBox in org.broadleafcommerce.common.sandbox.domain
 

Classes in org.broadleafcommerce.common.sandbox.domain that implement SandBox
 class SandBoxImpl
           
 

Fields in org.broadleafcommerce.common.sandbox.domain declared as SandBox
protected  SandBox SandBoxImpl.parentSandBox
           
protected  SandBox SandBoxManagementImpl.sandBox
           
 

Fields in org.broadleafcommerce.common.sandbox.domain with type parameters of type SandBox
protected  List<SandBox> SandBoxImpl.childSandBoxes
           
 

Methods in org.broadleafcommerce.common.sandbox.domain that return SandBox
 SandBox SandBox.getParentSandBox()
           
 SandBox SandBoxImpl.getParentSandBox()
           
 SandBox SandBoxManagementImpl.getSandBox()
           
 SandBox SandBoxManagement.getSandBox()
           
 

Methods in org.broadleafcommerce.common.sandbox.domain that return types with arguments of type SandBox
 List<SandBox> SandBox.getChildSandBoxes()
           
 List<SandBox> SandBoxImpl.getChildSandBoxes()
           
 

Methods in org.broadleafcommerce.common.sandbox.domain with parameters of type SandBox
 void SandBox.setParentSandBox(SandBox parentSandBox)
           
 void SandBoxImpl.setParentSandBox(SandBox parentSandBox)
           
 void SandBoxManagementImpl.setSandBox(SandBox sandBox)
           
 void SandBoxManagement.setSandBox(SandBox sandBox)
           
 

Method parameters in org.broadleafcommerce.common.sandbox.domain with type arguments of type SandBox
 void SandBox.setChildSandBoxes(List<SandBox> childSandBoxes)
           
 void SandBoxImpl.setChildSandBoxes(List<SandBox> childSandBoxes)
           
 

Uses of SandBox in org.broadleafcommerce.common.sandbox.service
 

Methods in org.broadleafcommerce.common.sandbox.service that return SandBox
 SandBox SandBoxService.createDefaultSandBox()
           
 SandBox SandBoxServiceImpl.createDefaultSandBox()
           
 SandBox SandBoxService.createSandBox(String sandBoxName, SandBoxType sandBoxType)
           
 SandBox SandBoxServiceImpl.createSandBox(String sandBoxName, SandBoxType sandBoxType)
           
 SandBox SandBoxService.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxServiceImpl.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxService.retrieveSandBox(String sandBoxName, SandBoxType sandBoxType)
           
 SandBox SandBoxServiceImpl.retrieveSandBox(String sandBoxName, SandBoxType sandBoxType)
           
 SandBox SandBoxService.retrieveSandBoxById(Long id)
           
 SandBox SandBoxServiceImpl.retrieveSandBoxById(Long sandboxId)
           
 SandBox SandBoxService.retrieveUserSandBox(Long authorId, Long overrideSandBoxId, String sandBoxName)
          Returns the sandbox currently associated with the passed in userId.
 SandBox SandBoxServiceImpl.retrieveUserSandBox(Long authorId, Long overrideSandBoxId, String sandBoxName)
           
 SandBox SandBoxService.retrieveUserSandBoxForParent(Long authorId, Long parentSandBoxId)
           
 SandBox SandBoxServiceImpl.retrieveUserSandBoxForParent(Long authorId, Long parentSandBoxId)
           
 

Methods in org.broadleafcommerce.common.sandbox.service that return types with arguments of type SandBox
 List<SandBox> SandBoxService.retrieveAllSandBoxes()
           
 List<SandBox> SandBoxServiceImpl.retrieveAllSandBoxes()
           
 List<SandBox> SandBoxService.retrievePreviewSandBoxes(Long authorId)
           
 List<SandBox> SandBoxServiceImpl.retrievePreviewSandBoxes(Long authorId)
           
 List<SandBox> SandBoxService.retrieveSandBoxesByType(SandBoxType type)
           
 List<SandBox> SandBoxServiceImpl.retrieveSandBoxesByType(SandBoxType type)
           
 

Methods in org.broadleafcommerce.common.sandbox.service with parameters of type SandBox
 SandBox SandBoxService.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 SandBox SandBoxServiceImpl.createUserSandBox(Long authorId, SandBox approvalSandBox)
           
 

Uses of SandBox in org.broadleafcommerce.common.web
 

Fields in org.broadleafcommerce.common.web declared as SandBox
protected  SandBox BroadleafRequestContext.sandBox
           
 

Methods in org.broadleafcommerce.common.web that return SandBox
 SandBox BroadleafRequestContext.getSandBox()
           
 SandBox BroadleafSandBoxResolverImpl.resolveSandBox(javax.servlet.http.HttpServletRequest request, Site site)
          Determines the current sandbox based on other parameters on the request such as the blSandBoxId parameters.
 SandBox BroadleafSandBoxResolver.resolveSandBox(javax.servlet.http.HttpServletRequest request, Site site)
          Deprecated. use BroadleafSandBoxResolver.resolveSandBox(WebRequest, Site) instead
 SandBox BroadleafSandBoxResolverImpl.resolveSandBox(org.springframework.web.context.request.WebRequest request, Site site)
           
 SandBox BroadleafSandBoxResolver.resolveSandBox(org.springframework.web.context.request.WebRequest request, Site site)
          Resolve the sandbox for the given site and request
 

Methods in org.broadleafcommerce.common.web with parameters of type SandBox
 void BroadleafRequestContext.setSandBox(SandBox sandBox)
           
 

Uses of SandBox in org.broadleafcommerce.common.web.expression
 

Methods in org.broadleafcommerce.common.web.expression that return SandBox
 SandBox BRCVariableExpression.getSandbox()
           
 



Copyright © 2013. All Rights Reserved.