Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 java.xml.crypto.jmod - XML Crypto Module
JDK 17 java.xml.crypto.jmod is the JMOD file for JDK 17 XML (eXtensible Markup Language) Crypto module.
JDK 17 XML Crypto module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.xml.crypto.jmod.
JDK 17 XML Crypto module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 XML Crypto module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.xml.crypto.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/xml/crypto/dsig/spec/XPathFilterParameterSpec.java
/* * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* * $Id: XPathFilterParameterSpec.java,v 1.4 2005/05/10 16:40:17 mullan Exp $ */ package javax.xml.crypto.dsig.spec; import javax.xml.crypto.dsig.Transform; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.Map; /** * Parameters for the <a href="http://www.w3.org/TR/xmldsig-core/#sec-XPath"> * XPath Filtering Transform Algorithm</a>. * The parameters include the XPath expression and an optional <code>Map</code> * of additional namespace prefix mappings. The XML Schema Definition of * the XPath Filtering transform parameters is defined as: * <pre><code> * <element name="XPath" type="string"/> * </code></pre> * * @author Sean Mullan * @author JSR 105 Expert Group * @since 1.6 * @see Transform */ public final class XPathFilterParameterSpec implements TransformParameterSpec { private final String xPath; private final Map<String,String> nsMap; /** * Creates an <code>XPathFilterParameterSpec</code> with the specified * XPath expression. * * @param xPath the XPath expression to be evaluated * @throws NullPointerException if <code>xPath</code> is <code>null</code> */ public XPathFilterParameterSpec(String xPath) { if (xPath == null) { throw new NullPointerException(); } this.xPath = xPath; this.nsMap = Collections.emptyMap(); } /** * Creates an <code>XPathFilterParameterSpec</code> with the specified * XPath expression and namespace map. The map is copied to protect against * subsequent modification. * * @param xPath the XPath expression to be evaluated * @param namespaceMap the map of namespace prefixes. Each key is a * namespace prefix <code>String</code> that maps to a corresponding * namespace URI <code>String</code>. * @throws NullPointerException if <code>xPath</code> or * <code>namespaceMap</code> are <code>null</code> * @throws ClassCastException if any of the map's keys or entries are not * of type <code>String</code> */ public XPathFilterParameterSpec(String xPath, Map<String,String> namespaceMap) { if (xPath == null || namespaceMap == null) { throw new NullPointerException(); } this.xPath = xPath; Map<String,String> tempMap = Collections.checkedMap(new HashMap<>(), String.class, String.class); tempMap.putAll(namespaceMap); this.nsMap = Collections.unmodifiableMap(tempMap); } /** * Returns the XPath expression to be evaluated. * * @return the XPath expression to be evaluated */ public String getXPath() { return xPath; } /** * Returns a map of namespace prefixes. Each key is a namespace prefix * <code>String</code> that maps to a corresponding namespace URI * <code>String</code>. * <p> * This implementation returns an {@link Collections#unmodifiableMap * unmodifiable map}. * * @return a <code>Map</code> of namespace prefixes to namespace URIs (may * be empty, but never <code>null</code>) */ public Map<String,String> getNamespaceMap() { return nsMap; } }
⏎ javax/xml/crypto/dsig/spec/XPathFilterParameterSpec.java
Or download all of them as a single archive file:
File name: java.xml.crypto-17.0.5-src.zip File size: 555559 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.accessibility.jmod - Accessibility Module
2023-07-01, 14433👍, 0💬
Popular Posts:
The JSR 105 XML Digital Signature 1.0.1 FCS implementation provides an API and implementation that a...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...
How to display XML element type information with the jaxp\TypeInfoWriter.java provided in the Apache...
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...
JDK 8 jconsole.jar is the JAR file for JDK 8 JConsole, which is a graphical monitoring tool to monit...