Class CodegenCustomizationProcessorChain
- java.lang.Object
-
- software.amazon.awssdk.codegen.customization.CodegenCustomizationProcessorChain
-
- All Implemented Interfaces:
CodegenCustomizationProcessor
public final class CodegenCustomizationProcessorChain extends Object implements CodegenCustomizationProcessor
-
-
Constructor Summary
Constructors Constructor Description CodegenCustomizationProcessorChain(CodegenCustomizationProcessor... processors)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
postprocess(IntermediateModel intermediateModel)
Apply the customization after the intermediate model is builtvoid
preprocess(ServiceModel serviceModel)
Apply the customization by directly modifying the service model, before the intermediate model is built.
-
-
-
Constructor Detail
-
CodegenCustomizationProcessorChain
public CodegenCustomizationProcessorChain(CodegenCustomizationProcessor... processors)
-
-
Method Detail
-
preprocess
public void preprocess(ServiceModel serviceModel)
Description copied from interface:CodegenCustomizationProcessor
Apply the customization by directly modifying the service model, before the intermediate model is built.- Specified by:
preprocess
in interfaceCodegenCustomizationProcessor
-
postprocess
public void postprocess(IntermediateModel intermediateModel)
Description copied from interface:CodegenCustomizationProcessor
Apply the customization after the intermediate model is built- Specified by:
postprocess
in interfaceCodegenCustomizationProcessor
-
-