Interface SectionSource
-
- All Known Implementing Classes:
AbstractSectionSource,ActivitySectionSource,ClassSectionSource,CombinedServerRetrieveValidateKeysSectionSource,DefaultJwtChallengeSectionSource,HandleAuthenticationRequiredSectionSource,HttpRouteSectionSource,HttpSecuritySectionSource,JwksPublishSectionSource,JwksSectionSource,ManagedFunctionSectionSource,OpenApiSectionSource,ProcedureSectionSource,SectionModelSectionSource,ServletSectionSource,TransformSectionSource,WebFluxSectionSource,WebMvcSectionSource,WebTemplateSectionSource
public interface SectionSourceSources theSectionType.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SectionSourceSpecificationgetSpecification()Obtains theSectionSourceSpecificationfor thisSectionSource.voidsourceSection(SectionDesigner designer, SectionSourceContext context)Sources theOfficeSectionby constructing it via the inputSectionDesigner.
-
-
-
Method Detail
-
getSpecification
SectionSourceSpecification getSpecification()
Obtains the
SectionSourceSpecificationfor thisSectionSource.This enables the
SectionSourceContextto be populated with the necessary details as per thisSectionSourceSpecificationin loading theSectionType.- Returns:
SectionSourceSpecification.
-
sourceSection
void sourceSection(SectionDesigner designer, SectionSourceContext context) throws java.lang.Exception
Sources theOfficeSectionby constructing it via the inputSectionDesigner.- Parameters:
designer-SectionDesignerto construct the structure of theOfficeSection.context-SectionSourceContextto source details to construct theOfficeSection.- Throws:
java.lang.Exception- If fails to construct theOfficeSection.
-
-