1 16 package org.springframework.webflow.definition.registry; 17 18 import org.springframework.webflow.definition.FlowDefinition; 19 20 31 public interface FlowDefinitionRegistry extends FlowDefinitionLocator, FlowDefinitionRegistryMBean { 32 33 39 public void setParent(FlowDefinitionRegistry parent); 40 41 49 public FlowDefinition[] getFlowDefinitions() throws FlowDefinitionConstructionException; 50 51 58 public void registerFlowDefinition(FlowDefinitionHolder flowHolder); 59 60 } | Popular Tags |