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 11 java.xml.crypto.jmod - XML Crypto Module
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto module.
JDK 11 XML Crypto module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.xml.crypto.jmod.
JDK 11 XML Crypto module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 XML Crypto module source code files are stored in \fyicenter\jdk-11.0.1\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-11.0.1-src.zip File size: 539662 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.accessibility.jmod - Accessibility Module
2020-08-25, 49458👍, 0💬
Popular Posts:
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
A stream buffer is a stream-based representation of an XML infoset in Java. Stream buffers are desig...
JDK 11 java.xml.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) module. JDK 11 XML...
What Is commons-net-ftp-2.0.jar? commons-net-ftp-2.0.jar is the JAR file for Apache Commons Net FTP ...
JDK 11 jdk.jconsole.jmod is the JMOD file for JDK 11 JConsole tool, which can be invoked by the "jco...