List of usage examples for javax.xml.transform URIResolver interface-usage
From source file com.adaptris.util.text.xml.Resolver.java
/**
* Simple resolver that caches URLs that it has previously encountered.
*
* @author Stuart Ellidge
*
* @config simple-entity-resolver
From source file org.toobsframework.transformpipeline.domain.XSLUriResolverImpl.java
public class XSLUriResolverImpl implements URIResolver, ApplicationContextAware, InitializingBean { private static final Log log = LogFactory.getLog(XSLUriResolverImpl.class); public static String COMPONENT_MANAGER_XSL = "component-manager.xsl"; protected ApplicationContext applicationContext;
From source file org.smartfrog.services.cddlm.cdl.CdlCatalog.java
/** * created Jul 15, 2004 3:58:11 PM */ public class CdlCatalog implements URIResolver, EntityResolver {
From source file it.tidalwave.northernwind.core.impl.util.CachedURIResolver.java
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
*
**********************************************************************************************************************/
@Slf4j
From source file org.smartfrog.projects.alpine.xmlutils.CatalogHandler.java
/**
* This class handles entity resolution problems. When used with XSD, file paths
* come in as absolute paths, not relative ones, and they are absolute relative
* to where xerces is working, at least when importing resource files. So, this
* catalog does something special: it matches by the short name of a file.
* <p/>
From source file org.callimachusproject.xml.InputSourceResolver.java
public class InputSourceResolver implements EntityResolver, URIResolver, ModuleURIResolver, UnparsedTextURIResolver { private static final Pattern CHARSET = Pattern.compile("\\bcharset\\s*=\\s*([\\w-:]+)"); private final Logger logger = LoggerFactory.getLogger(InputSourceResolver.class); private final HttpUriClient client; private final String accept;
From source file org.theospi.portfolio.shared.control.ContentResourceUriResolver.java
public class ContentResourceUriResolver implements URIResolver { private EntityManager entityManager; private ServerConfigurationService serverConfigurationService; protected final Log logger = LogFactory.getLog(getClass());
From source file org.apache.fop.apps.FOURIResolver.java
/**
* Provides FOP specific URI resolution. This is the default URIResolver
* {@link FOUserAgent} will use unless overridden.
*
* @see javax.xml.transform.URIResolver
*/
From source file com.wooki.services.parsers.XHTMLToFormattingObjects.java
public class XHTMLToFormattingObjects implements Convertor, URIResolver, EntityResolver { private TransformerFactory tFactory = TransformerFactory.newInstance(); private Transformer transformer; private Resource xslStylesheet;
From source file com.rest4j.generator.Generator.java
/** * @author Joseph Kapizza <joseph@rest4j.com> */ public class Generator implements URIResolver { URL apiXml; URL postprocessingXSLT;