Example usage for javax.xml.transform URIResolver interface-usage

List of usage examples for javax.xml.transform URIResolver interface-usage

Introduction

In this page you can find the example usage for javax.xml.transform URIResolver interface-usage.

Usage

From source file gov.nih.nci.cabig.caaers2adeers.xslt.ClasspathURIResolver.java

/**
 * Will resolve a file from classpath
 */
public class ClasspathURIResolver implements URIResolver {

    protected static final Log log = LogFactory.getLog(ClasspathURIResolver.class);

From source file org.wm.xml.transform.JTidyResolver.java

/**
 * URI resolver for HTML documents. This JTidy-based implementation allows
 * transformers accessing HTML documents otherwise invalid in XML syntax.
 */
public class JTidyResolver implements URIResolver {
    /**

From source file dk.defxws.fedoragsearch.server.URIResolverImpl.java

/**
 * custom URIResolver for ssl access to fedora repository
 * 
 * @author  gsp@dtv.dk
 * @version 
 */

From source file org.roda.core.common.RodaURIFileResolver.java

public class RodaURIFileResolver implements URIResolver {

    private static CacheLoader<String, byte[]> loader = new CacheLoader<String, byte[]>() {

        @Override
        public byte[] load(String href) throws Exception {

From source file com.google.code.docbook4j.VfsURIResolver.java

public class VfsURIResolver implements URIResolver {

    private static final Logger log = LoggerFactory.getLogger(VfsURIResolver.class);

    public Source resolve(String href, String base) throws TransformerException {
        log.debug("Resolving href={} for base={}", href, base);

From source file org.dthume.maven.xpom.impl.saxon.stdlib.StandardLibraryURIResolver.java

public class StandardLibraryURIResolver implements URIResolver {
    private final static String CORE_URN = XPOMConstants.CORE_NS;

    private final static String BASE_URN = CORE_URN + ":";

    private final static String CORE_XSL = "xpom-core";

From source file com.google.code.docbook4j.XslURIResolver.java

public class XslURIResolver implements URIResolver {

    private static final Logger log = LoggerFactory.getLogger(XslURIResolver.class);

    private String docbookXslBase;

From source file com.elsevier.spark_xml_utils.xslt.S3URIResolver.java

/**
 * URI Resolver that will be used by XLTProcessor when resolving xsl:import and
 * xsl:include statements. The purpose of this class is to create a local cache
 * of the stylesheets retrieved (presumably) from S3 so they don't need to be 
 * re-retrieved from S3 on subsequent requests.
 * 

From source file com.elsevier.xml.S3URIResolver.java

/**
 * URI Resolver that will be used by XLTProcessor when resolving xsl:import and
 * xsl:include statements. The purpose of this class is to create a local cache
 * of the stylesheets retrieved (presumably) from S3 so they don't need to be 
 * re-retrieved from S3 on subsequent requests.
 * 

From source file de.betterform.xml.xslt.impl.CachingTransformerService.java

/**
 * Provides a resource caching implementation of TransformerService. Special
 * care is taken for the inter-dependencies of the cached resources, i.e.
 * a resource is considered dirty if any dependant resource is dirty. This
 * means that a stylesheet will be reloaded even if just an included stylesheet
 * has been changed.