• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1##
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the  "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10#     http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17##
18#
19# $Id$
20#
21# Used by TransformWrapperFactory.wrapperMapper
22#   This maps simple 'flavor' names to specific FQCN names
23#   of actual TransformWrapper implementations, allowing users
24#   to specify much simpler -flavor arguments
25
26# Default for Xalan2 and TrAX is the TraxFileWrapper, which
27#   does transforms from StreamSource(URL)
28xalan2=org.apache.qetest.xslwrapper.TraxSystemIdWrapper
29trax=org.apache.qetest.xslwrapper.TraxSystemIdWrapper
30
31# Other TrAX wrappers use the same TrAX APIs but in
32#   different models - streams, doms, sax, etc.
33# Note that you must set the appropriate Java system property to switch
34#   between different javax.xml.transform.TransformerFactory implementations
35trax.systemId=org.apache.qetest.xslwrapper.TraxSystemIdWrapper
36trax.file=org.apache.qetest.xslwrapper.TraxFileWrapper
37trax.stream=org.apache.qetest.xslwrapper.TraxStreamWrapper
38trax.dom=org.apache.qetest.xslwrapper.TraxDOMWrapper
39trax.sax=org.apache.qetest.xslwrapper.TraxSAXWrapper
40trax.localPath=org.apache.qetest.xslwrapper.TraxLocalPathWrapper
41
42# TRaX wrapper that performs three transforms using same transformer
43trax.systemId3=org.apache.qetest.xslwrapper.TraxSystemId3Wrapper
44
45# Xalan command line wrapper, calls Process.main()
46xalan=org.apache.qetest.xslwrapper.XalanProcessWrapper
47process=org.apache.qetest.xslwrapper.XalanProcessWrapper
48
49# XSLTC is now available as a separate 'mode'
50#   XsltcMainWrapper effectively just calls old XSLTC command line
51xsltc=org.apache.qetest.xslwrapper.XsltcMainWrapper
52