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.naming.jmod - Naming Module
JDK 11 java.naming.jmod is the JMOD file for JDK 11 Naming module.
JDK 11 Naming module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.naming.jmod.
JDK 11 Naming module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Naming module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.naming.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/jndi/ldap/LdapURL.java
/* * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.jndi.ldap; import javax.naming.*; import java.net.MalformedURLException; import java.io.UnsupportedEncodingException; import java.util.StringTokenizer; import com.sun.jndi.toolkit.url.Uri; import com.sun.jndi.toolkit.url.UrlUtil; /* * Extract components of an LDAP URL. * * The format of an LDAP URL is defined in RFC 2255 as follows: * * ldapurl = scheme "://" [hostport] ["/" * [dn ["?" [attributes] ["?" [scope] * ["?" [filter] ["?" extensions]]]]]] * scheme = "ldap" * attributes = attrdesc *("," attrdesc) * scope = "base" / "one" / "sub" * dn = distinguishedName from Section 3 of [1] * hostport = hostport from Section 5 of RFC 1738 [5] * attrdesc = AttributeDescription from Section 4.1.5 of [2] * filter = filter from Section 4 of [4] * extensions = extension *("," extension) * extension = ["!"] extype ["=" exvalue] * extype = token / xtoken * exvalue = LDAPString from section 4.1.2 of [2] * token = oid from section 4.1 of [3] * xtoken = ("X-" / "x-") token * * For example, * * ldap://ldap.itd.umich.edu/o=University%20of%20Michigan,c=US * ldap://host.com:6666/o=IMC,c=US??sub?(cn=Babs%20Jensen) * * This class also supports ldaps URLs. */ final public class LdapURL extends Uri { private boolean useSsl = false; private String DN = null; private String attributes = null; private String scope = null; private String filter = null; private String extensions = null; /** * Creates an LdapURL object from an LDAP URL string. */ public LdapURL(String url) throws NamingException { super(); try { init(url); // scheme, host, port, path, query useSsl = scheme.equalsIgnoreCase("ldaps"); if (! (scheme.equalsIgnoreCase("ldap") || useSsl)) { throw new MalformedURLException("Not an LDAP URL: " + url); } parsePathAndQuery(); // DN, attributes, scope, filter, extensions } catch (MalformedURLException e) { NamingException ne = new NamingException("Cannot parse url: " + url); ne.setRootCause(e); throw ne; } catch (UnsupportedEncodingException e) { NamingException ne = new NamingException("Cannot parse url: " + url); ne.setRootCause(e); throw ne; } } /** * Returns true if the URL is an LDAPS URL. */ public boolean useSsl() { return useSsl; } /** * Returns the LDAP URL's distinguished name. */ public String getDN() { return DN; } /** * Returns the LDAP URL's attributes. */ public String getAttributes() { return attributes; } /** * Returns the LDAP URL's scope. */ public String getScope() { return scope; } /** * Returns the LDAP URL's filter. */ public String getFilter() { return filter; } /** * Returns the LDAP URL's extensions. */ public String getExtensions() { return extensions; } /** * Given a space-separated list of LDAP URLs, returns an array of strings. */ public static String[] fromList(String urlList) throws NamingException { String[] urls = new String[(urlList.length() + 1) / 2]; int i = 0; // next available index in urls StringTokenizer st = new StringTokenizer(urlList, " "); while (st.hasMoreTokens()) { urls[i++] = st.nextToken(); } String[] trimmed = new String[i]; System.arraycopy(urls, 0, trimmed, 0, i); return trimmed; } /** * Determines whether an LDAP URL has query components. */ public static boolean hasQueryComponents(String url) { return (url.lastIndexOf('?') != -1); } /* * Assembles an LDAP or LDAPS URL string from its components. * If "host" is an IPv6 literal, it may optionally include delimiting * brackets. */ static String toUrlString(String host, int port, String dn, boolean useSsl) { try { String h = (host != null) ? host : ""; if ((h.indexOf(':') != -1) && (h.charAt(0) != '[')) { h = "[" + h + "]"; // IPv6 literal } String p = (port != -1) ? (":" + port) : ""; String d = (dn != null) ? ("/" + UrlUtil.encode(dn, "UTF8")) : ""; return useSsl ? "ldaps://" + h + p + d : "ldap://" + h + p + d; } catch (UnsupportedEncodingException e) { // UTF8 should always be supported throw new IllegalStateException("UTF-8 encoding unavailable"); } } /* * Parses the path and query components of an URL and sets this * object's fields accordingly. */ private void parsePathAndQuery() throws MalformedURLException, UnsupportedEncodingException { // path begins with a '/' or is empty if (path.equals("")) { return; } DN = path.startsWith("/") ? path.substring(1) : path; if (DN.length() > 0) { DN = UrlUtil.decode(DN, "UTF8"); } // query begins with a '?' or is null if (query == null || query.length() < 2) { return; } int currentIndex = 1; int nextQmark; int endIndex; // attributes: nextQmark = query.indexOf('?', currentIndex); endIndex = nextQmark == -1 ? query.length() : nextQmark; if (endIndex - currentIndex > 0) { attributes = query.substring(currentIndex, endIndex); } currentIndex = endIndex + 1; if (currentIndex >= query.length()) { return; } // scope: nextQmark = query.indexOf('?', currentIndex); endIndex = nextQmark == -1 ? query.length() : nextQmark; if (endIndex - currentIndex > 0) { scope = query.substring(currentIndex, endIndex); } currentIndex = endIndex + 1; if (currentIndex >= query.length()) { return; } // filter: nextQmark = query.indexOf('?', currentIndex); endIndex = nextQmark == -1 ? query.length() : nextQmark; if (endIndex - currentIndex > 0) { filter = query.substring(currentIndex, endIndex); filter = UrlUtil.decode(filter, "UTF8"); } currentIndex = endIndex + 1; if (currentIndex >= query.length()) { return; } // extensions: if (query.length() - currentIndex > 0) { extensions = query.substring(currentIndex); extensions = UrlUtil.decode(extensions, "UTF8"); } } /* public static void main(String[] args) throws Exception { LdapURL url = new LdapURL(args[0]); System.out.println("Example LDAP URL: " + url.toString()); System.out.println(" scheme: " + url.getScheme()); System.out.println(" host: " + url.getHost()); System.out.println(" port: " + url.getPort()); System.out.println(" DN: " + url.getDN()); System.out.println(" attrs: " + url.getAttributes()); System.out.println(" scope: " + url.getScope()); System.out.println(" filter: " + url.getFilter()); System.out.println(" extens: " + url.getExtensions()); System.out.println(""); } */ }
⏎ com/sun/jndi/ldap/LdapURL.java
Or download all of them as a single archive file:
File name: java.naming-11.0.1-src.zip File size: 461792 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.net.http.jmod - Net HTTP Module
2020-09-30, 60741👍, 0💬
Popular Posts:
What Is jms.jar? I heard it's related to JMS (Java Message Service) 1.1? The if you have an jms.jar ...
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
What Is jaxb-impl-2.1.12.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Jav...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...