All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.webflow.registry.XmlFlowRegistrar Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/*
 * Copyright 2002-2006 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.webflow.registry;

import org.springframework.core.io.Resource;
import org.springframework.webflow.builder.FlowBuilder;
import org.springframework.webflow.builder.FlowServiceLocator;
import org.springframework.webflow.builder.XmlFlowBuilder;
import org.xml.sax.EntityResolver;

/**
 * A flow registrar that populates a flow registry from flow definitions defined
 * within externalized XML resources. Typically used in conjunction with a
 * {@link XmlFlowRegistryFactoryBean} but may also be used standalone in
 * programmatic fashion.
 * 

* By default, a flow definition registered by this registrar will be assigned a * registry identifier equal to the filename of the underlying definition * resource, minus the filename extension. For example, a XML-based flow * definition defined in the file "flow1.xml" will be identified as "flow1" when * registered in a registry. * * Programmatic usage example: *

* *
 *     BeanFactory beanFactory = ...
 *     FlowRegistryImpl registry = new FlowRegistryImpl();
 *     FlowServiceLocator flowServiceLocator =
 *         new DefaultFlowServiceLocator(registry, beanFactory);
 *     XmlFlowRegistrar registrar = new XmlFlowRegistrar();
 *     File parent = new File("src/webapp/WEB-INF");
 *     registrar.addFlowLocation(new FileSystemResource(new File(parent, "flow1.xml"));
 *     registrar.addFlowLocation(new FileSystemResource(new File(parent, "flow2.xml"));
 *     registrar.registerFlows(locations, flowServiceLocator);
 * 
* * @author Keith Donald */ public class XmlFlowRegistrar extends ExternalizedFlowRegistrar { /** * The xml file suffix constant. */ private static final String XML_SUFFIX = ".xml"; /** * A flag indicating whether or not the flow builder used to build the flow * definitions in this registry should perform build-time validation. */ private boolean builderValidating = true; /** * The entity resolver to use during Xml flow definition building. */ private EntityResolver entityResolver; /** * Sets whether or not the flow builder used to build the flow definitions * in this registry should perform build-time validation. * @param builderValidating the validating flag */ public void setBuilderValidating(boolean builderValidating) { this.builderValidating = builderValidating; } /** * Sets the entity resolver to use during Xml flow definition building. * @param entityResolver the entity resolver */ public void setEntityResolver(EntityResolver entityResolver) { this.entityResolver = entityResolver; } protected boolean isFlowDefinition(Resource resource) { return resource.getFilename().endsWith(XML_SUFFIX); } protected FlowBuilder createFlowBuilder(Resource location, FlowServiceLocator flowServiceLocator) { XmlFlowBuilder builder = new XmlFlowBuilder(location, flowServiceLocator); builder.setValidating(builderValidating); if (entityResolver != null) { builder.setEntityResolver(entityResolver); } return builder; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy