Class DefaultAdditionalInformationFrameworkFacade
- java.lang.Object
-
- de.hybris.platform.assistedservicefacades.customer360.impl.DefaultAdditionalInformationFrameworkFacade
-
- All Implemented Interfaces:
AdditionalInformationFrameworkFacade
public class DefaultAdditionalInformationFrameworkFacade extends java.lang.Object implements AdditionalInformationFrameworkFacade
Default implementation forAdditionalInformationFrameworkFacade
-
-
Constructor Summary
Constructors Constructor Description DefaultAdditionalInformationFrameworkFacade()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FragmentgetFragment(java.lang.String sectionId, java.lang.String fragmentId, java.util.Map<java.lang.String,java.lang.String> parameters)Retrieves a fragment based on section id and fragment id with provided parametersprotected java.util.Map<java.lang.String,java.lang.String>getJspProvidersMap()protected java.util.Map<java.lang.String,FragmentModelProvider>getModelProvidersMap()SectiongetSection(java.lang.String sectionId)Retrieves full section information based on section Idjava.util.List<Section>getSections()Return list of sections , this mainly will be used to getting section meta infovoidsetJspProvidersMap(java.util.Map<java.lang.String,java.lang.String> jspProvidersMap)voidsetModelProvidersMap(java.util.Map<java.lang.String,FragmentModelProvider> modelProvidersMap)voidsetSections(java.util.List<Section> sections)
-
-
-
Method Detail
-
getSections
public java.util.List<Section> getSections()
Description copied from interface:AdditionalInformationFrameworkFacadeReturn list of sections , this mainly will be used to getting section meta info- Specified by:
getSectionsin interfaceAdditionalInformationFrameworkFacade- Returns:
- list of sections
-
getSection
public Section getSection(java.lang.String sectionId)
Description copied from interface:AdditionalInformationFrameworkFacadeRetrieves full section information based on section Id- Specified by:
getSectionin interfaceAdditionalInformationFrameworkFacade- Parameters:
sectionId- the section Id to retrieve- Returns:
- the section
-
getFragment
public Fragment getFragment(java.lang.String sectionId, java.lang.String fragmentId, java.util.Map<java.lang.String,java.lang.String> parameters)
Description copied from interface:AdditionalInformationFrameworkFacadeRetrieves a fragment based on section id and fragment id with provided parameters- Specified by:
getFragmentin interfaceAdditionalInformationFrameworkFacade- Parameters:
sectionId- the section to fetch the fragment fromfragmentId- the fragment Idparameters- parameters to be passed- Returns:
- fragment along with its data
-
setSections
public void setSections(java.util.List<Section> sections)
-
getModelProvidersMap
protected java.util.Map<java.lang.String,FragmentModelProvider> getModelProvidersMap()
-
setModelProvidersMap
public void setModelProvidersMap(java.util.Map<java.lang.String,FragmentModelProvider> modelProvidersMap)
-
getJspProvidersMap
protected java.util.Map<java.lang.String,java.lang.String> getJspProvidersMap()
-
setJspProvidersMap
public void setJspProvidersMap(java.util.Map<java.lang.String,java.lang.String> jspProvidersMap)
-
-