Class BaseProcessor
- java.lang.Object
-
- org.springframework.extensions.webscripts.processor.BaseProcessor
-
- All Implemented Interfaces:
Processor
- Direct Known Subclasses:
BaseRegisterableScriptProcessor,BaseRegisterableTemplateProcessor
public abstract class BaseProcessor extends java.lang.Object implements Processor
Base class for Web-Tier processing classes - Script and Template.- Author:
- Kevin Roast
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map<java.lang.String,ProcessorExtension>processorExtensionsA map containing all the processor extenstions
-
Constructor Summary
Constructors Constructor Description BaseProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidregisterProcessorExtension(ProcessorExtension processorExtension)Registers a processor extension with the processor-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.springframework.extensions.surf.core.processor.Processor
getExtension, getName
-
-
-
-
Field Detail
-
processorExtensions
protected java.util.Map<java.lang.String,ProcessorExtension> processorExtensions
A map containing all the processor extenstions
-
-
Method Detail
-
registerProcessorExtension
public void registerProcessorExtension(ProcessorExtension processorExtension)
Description copied from interface:ProcessorRegisters a processor extension with the processor- Specified by:
registerProcessorExtensionin interfaceProcessor- Parameters:
processorExtension- the process extension- See Also:
Processor.registerProcessorExtension(org.springframework.extensions.surf.core.processor.ProcessorExtension)
-
-