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
⏎ com/sun/org/apache/xml/internal/security/utils/DOMNamespaceContext.java
/* * Copyright (c) 2007, 2022, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ /** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package com.sun.org.apache.xml.internal.security.utils; import java.util.Iterator; import java.util.Objects; import javax.xml.namespace.NamespaceContext; import org.w3c.dom.Node; import static javax.xml.XMLConstants.DEFAULT_NS_PREFIX; import static javax.xml.XMLConstants.NULL_NS_URI; import static javax.xml.XMLConstants.XMLNS_ATTRIBUTE; import static javax.xml.XMLConstants.XMLNS_ATTRIBUTE_NS_URI; import static javax.xml.XMLConstants.XML_NS_PREFIX; import static javax.xml.XMLConstants.XML_NS_URI; /** * This class adapts the {@link Node} namespace/prefix lookup API to that of {@link NamespaceContext}. * There are some differences: * <table> * <tr> * <th>Function</th> * <th>{@link NamespaceContext} API</th> * <th>{@link Node} API</th> * </tr> * <tr> * <td>Look up the prefix for a given namespace URI.</td> * <td>{@link NamespaceContext#getPrefix(String)}</td> * <td>{@link Node#lookupPrefix(String)}</td> * </tr> * <tr> * <td>Look up all the prefixes for a given namespace URI.</td> * <td>{@link NamespaceContext#getPrefixes(String)}</td> * <td>/</td> * </tr> * <tr> * <td>Look up the namespace URI for a given prefix.</td> * <td>{@link NamespaceContext#getNamespaceURI(String)}</td> * <td>{@link Node#lookupNamespaceURI(String)}</td> * </tr> * <tr> * <td>The default prefix.</td> * <td>{@link javax.xml.XMLConstants#DEFAULT_NS_PREFIX}</td> * <td>{@code null}</td> * </tr> * <tr> * <td>The default namespace URI.</td> * <td>{@link javax.xml.XMLConstants#NULL_NS_URI}</td> * <td>{@code null}</td> * </tr> * </table> */ public class DOMNamespaceContext implements NamespaceContext { private Node context; public DOMNamespaceContext(Node context) { setContext(context); } public void setContext(Node context) { this.context = context; } public String getNamespaceURI(String prefix) { if (prefix == null) { throw new IllegalArgumentException("prefix is null"); } if (prefix.equals(DEFAULT_NS_PREFIX)) { prefix = null; } if (context != null) { String namespaceURI = context.lookupNamespaceURI(prefix); if (namespaceURI != null) { return namespaceURI; } } if (prefix == null) { return NULL_NS_URI; } else if (prefix.equals(XML_NS_PREFIX)) { return XML_NS_URI; } else if (prefix.equals(XMLNS_ATTRIBUTE)) { return XMLNS_ATTRIBUTE_NS_URI; } return NULL_NS_URI; } public String getPrefix(String namespaceURI) { if (namespaceURI == null) { throw new IllegalArgumentException("namespace URI is null"); } if (namespaceURI.equals(NULL_NS_URI)) { namespaceURI = null; } if (context != null) { String prefix = context.lookupPrefix(namespaceURI); if (prefix != null) { return prefix; } else if (Objects.equals(context.lookupNamespaceURI(null), namespaceURI)) { // context.lookupPrefix(namespaceURI) returns null when a namespace URI is unbound but also when it is // bound to the default prefix. // To distinguish the case of an unbound namespace URI from a bound one to the default prefix, // we look up the namespace URI for the default prefix (null) and if it matches, we return the default // prefix. return DEFAULT_NS_PREFIX; } } if (namespaceURI == null && context != null) { return context.lookupNamespaceURI(null) != null ? null : DEFAULT_NS_PREFIX; } else if (XML_NS_URI.equals(namespaceURI)) { return XML_NS_PREFIX; } else if (XMLNS_ATTRIBUTE_NS_URI.equals(namespaceURI)) { return XMLNS_ATTRIBUTE; } return null; } /** * Throws {@link UnsupportedOperationException}. */ public Iterator<String> getPrefixes(String namespaceURI) { throw new UnsupportedOperationException(); } }
⏎ com/sun/org/apache/xml/internal/security/utils/DOMNamespaceContext.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, 14454👍, 0💬
Popular Posts:
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...