0N/A/*
2362N/A * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A/*
0N/A * $Id: XSLTTransformParameterSpec.java,v 1.4 2005/05/10 16:40:18 mullan Exp $
0N/A */
0N/Apackage javax.xml.crypto.dsig.spec;
0N/A
0N/Aimport javax.xml.crypto.dsig.Transform;
0N/Aimport javax.xml.crypto.XMLStructure;
0N/A
0N/A/**
0N/A * Parameters for the <a href="http://www.w3.org/TR/1999/REC-xslt-19991116">
0N/A * XSLT Transform Algorithm</a>.
0N/A * The parameters include a namespace-qualified stylesheet element.
0N/A *
0N/A * <p>An <code>XSLTTransformParameterSpec</code> is instantiated with a
0N/A * mechanism-dependent (ex: DOM) stylesheet element. For example:
0N/A * <pre>
0N/A * DOMStructure stylesheet = new DOMStructure(element)
0N/A * XSLTTransformParameterSpec spec = new XSLTransformParameterSpec(stylesheet);
0N/A * </pre>
0N/A * where <code>element</code> is an {@link org.w3c.dom.Element} containing
0N/A * the namespace-qualified stylesheet element.
0N/A *
0N/A * @author Sean Mullan
0N/A * @author JSR 105 Expert Group
0N/A * @since 1.6
0N/A * @see Transform
0N/A */
0N/Apublic final class XSLTTransformParameterSpec implements TransformParameterSpec{
0N/A private XMLStructure stylesheet;
0N/A
0N/A /**
0N/A * Creates an <code>XSLTTransformParameterSpec</code> with the specified
0N/A * stylesheet.
0N/A *
0N/A * @param stylesheet the XSLT stylesheet to be used
0N/A * @throws NullPointerException if <code>stylesheet</code> is
0N/A * <code>null</code>
0N/A */
0N/A public XSLTTransformParameterSpec(XMLStructure stylesheet) {
0N/A if (stylesheet == null) {
0N/A throw new NullPointerException();
0N/A }
0N/A this.stylesheet = stylesheet;
0N/A }
0N/A
0N/A /**
0N/A * Returns the stylesheet.
0N/A *
0N/A * @return the stylesheet
0N/A */
0N/A public XMLStructure getStylesheet() {
0N/A return stylesheet;
0N/A }
0N/A}