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

com.deltaxml.core.DXPConfiguration Maven / Gradle / Ivy

The newest version!
package com.deltaxml.core;

import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.Map;
import javax.xml.parsers.ParserConfigurationException;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

/**
 * Loads a {@link PipelinedComparator} from a DXP configuration.
 *
 * 

* DXP (DeltaXML Pipelines) is a declarative file format for describing * comparator pipelines and could also be considered a form of customization * language for comparator based tools. This class provides methods for * obtaining information from DXP files and also for loading a * {@link PipelinedComparator} instance from DXP.

* *

* The constructor of this class is generally responsible for ensuring validity * of the input DXP. However, other semantic validity checks may be made during * the various {@code generate} methods.

* * @see * Class DXPConfiguration */ public class DXPConfiguration { public DXPConfiguration(InputSource dxpSource, boolean bypassJAXPDBFactory) throws ParserConfigurationException, IOException, SAXException, MissingSystemIdException { throw new UnsupportedOperationException(); } public DXPConfiguration(InputSource dxpSource) throws ParserConfigurationException, IOException, SAXException, MissingSystemIdException { throw new UnsupportedOperationException(); } public DXPConfiguration(File f, boolean bypassJAXPDBFactory) throws ParserConfigurationException, IOException, SAXException { throw new UnsupportedOperationException(); } public DXPConfiguration(File f) throws ParserConfigurationException, IOException, SAXException { throw new UnsupportedOperationException(); } public DXPConfiguration(InputSource dxpSource, EntityResolver er, boolean validate, boolean bypassJAXPDBFactory) throws ParserConfigurationException, IOException, SAXException { throw new UnsupportedOperationException(); } public DXPConfiguration(InputSource dxpSource, EntityResolver er, boolean validate) throws ParserConfigurationException, IOException, SAXException { throw new UnsupportedOperationException(); } public PipelinedComparator generate(Map booleanOverrides, Map stringOverrides) throws ClassNotFoundException, MalformedURLException, ParserInstantiationException, FilterClassInstantiationException, FilterClassIncompatibilityException, TransformerInstantiationException, FilterConfigurationException, FilterParameterizationException, FeatureNotRecognizedException, FeatureSettingNotSupportedException, PropertyNotRecognizedException, FilterParameterizationNotSupportedException, ParameterValueConflict, NonUniqueParameterNameException, UnknownParameterException, InvalidPipelineException, UnsupportedDXPVersionException { throw new UnsupportedOperationException(); } public PipelinedComparator generate(Map booleanOverrides, Map stringOverrides, boolean bypassJAXPFactories) throws ClassNotFoundException, MalformedURLException, ParserInstantiationException, FilterClassInstantiationException, FilterClassIncompatibilityException, TransformerInstantiationException, FilterConfigurationException, FilterParameterizationException, FeatureNotRecognizedException, FeatureSettingNotSupportedException, PropertyNotRecognizedException, FilterParameterizationNotSupportedException, ParameterValueConflict, NonUniqueParameterNameException, UnknownParameterException, InvalidPipelineException, UnsupportedDXPVersionException { throw new UnsupportedOperationException(); } public PipelinedComparator generate() throws ClassNotFoundException, MalformedURLException, ParserInstantiationException, FilterClassInstantiationException, FilterClassIncompatibilityException, TransformerInstantiationException, FilterConfigurationException, FilterParameterizationException, FeatureNotRecognizedException, FeatureSettingNotSupportedException, PropertyNotRecognizedException, FilterParameterizationNotSupportedException, ParameterValueConflict, NonUniqueParameterNameException, UnknownParameterException, InvalidPipelineException, UnsupportedDXPVersionException { throw new UnsupportedOperationException(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy