FlowHelper.setContextObject(objectModel, biz);
// Attermpt to start processing the wrapper environment
Object key = CocoonComponentManager.startProcessing(wrapper);
Processor processor = null;
boolean result = false;
try {
// Retrieve a processor instance
processor = (Processor)this.manager.lookup(Processor.ROLE);
// Enter the environment
CocoonComponentManager.enterEnvironment(wrapper, this.manager, processor);
// Process the subrequest
result = processor.process(wrapper);
if (out != null) {
wrapper.commitResponse();
out.flush();
}
// Return whatever the processor returned us