Example usage for org.xml.sax EntityResolver interface-usage

List of usage examples for org.xml.sax EntityResolver interface-usage

Introduction

In this page you can find the example usage for org.xml.sax EntityResolver interface-usage.

Usage

From source file org.topazproject.xml.transform.CustomEntityResolver.java

/**
 * Cache entities for an {@link org.xml.sax.XMLReader}.
 *
 * For example: (also see {@link org.topazproject.xml.transform.cache.CachedSource})
 * <pre>
 *   Transformer    transformer   = ...

From source file com.runwaysdk.dataaccess.io.RunwayClasspathEntityResolver.java

/**
 * This entity resolver allows us to specify schemaLocations with a preceding 'classpath:'.
 * 
 * @author Richard Rowlands
 */
public class RunwayClasspathEntityResolver implements EntityResolver {

From source file org.safehaus.penrose.federation.FederationReader.java

/**
 * @author Endi S. Dewata
 */
public class FederationReader implements EntityResolver {

    public Logger log = LoggerFactory.getLogger(getClass());

From source file org.apache.ode.bpel.compiler.LocalEntityResolver.java

/**
 * Resolver implementation that restricts us to a known set of resources.
 */
class LocalEntityResolver implements EntityResolver {
    private static final Log __log = LogFactory.getLog(LocalEntityResolver.class);

From source file org.apache.ode.bpel.compiler.bom.LocalEntityResolver.java

/**
 * Resolver implementation that restricts us to a known set of resources.
 */
class LocalEntityResolver implements EntityResolver {
    private static final Log __log = LogFactory.getLog(LocalEntityResolver.class);

From source file org.apache.xml.security.test.resource.TestVectorResolver.java

/**
 * This package is responsible for retrieving test vectors for our unit tests.
 *
 * @author Christian Geuer-Pollmann
 * $todo$ Currently, the test vectors are in the file system under the data/ directory. It is planned to put them all into a single jar/zip which is deployed with the library.
 */

From source file org.safehaus.penrose.config.PenroseConfigReader.java

/**
 * @author Endi S. Dewata
 */
public class PenroseConfigReader implements EntityResolver {

    public Logger log = LoggerFactory.getLogger(getClass());

From source file com.liusoft.sc.util.SchemaResolver.java

/**
 * SAX?schema?URLjardtd
 * ?XMLDTD???
 *
 * Spring ??XML???schema?xml
 * ??DTD?jar

From source file com.doculibre.constellio.feedprotocol.parse.xml.FeedEntityResolver.java

public class FeedEntityResolver implements EntityResolver {

    private static final ClassPathResource DTD_PATH = new ClassPathResource("gsafeed.dtd",
            FeedEntityResolver.class);

    private static final FeedEntityResolver INSTANCE = new FeedEntityResolver();

From source file se.inera.axel.shs.processor.DtdEntityResolver.java

public class DtdEntityResolver implements EntityResolver {
    private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(DtdEntityResolver.class);

    private static final String DTD_LOCATION = "/dtd/";

    static Map<String, String> entities = new ConcurrentHashMap<>();