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
⏎ javax/naming/ldap/Control.java
/* * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.naming.ldap; /** * This interface represents an LDAPv3 control as defined in * <A HREF="http://www.ietf.org/rfc/rfc2251.txt">RFC 2251</A>. *<p> * The LDAPv3 protocol uses controls to send and receive additional data * to affect the behavior of predefined operations. * Controls can be sent along with any LDAP operation to the server. * These are referred to as <em>request controls</em>. For example, a * "sort" control can be sent with an LDAP search operation to * request that the results be returned in a particular order. * Solicited and unsolicited controls can also be returned with * responses from the server. Such controls are referred to as * <em>response controls</em>. For example, an LDAP server might * define a special control to return change notifications. *<p> * This interface is used to represent both request and response controls. * * @author Rosanna Lee * @author Scott Seligman * @author Vincent Ryan * * @see ControlFactory * @since 1.3 */ public interface Control extends java.io.Serializable { /** * Indicates a critical control. * The value of this constant is {@code true}. */ public static final boolean CRITICAL = true; /** * Indicates a non-critical control. * The value of this constant is {@code false}. */ public static final boolean NONCRITICAL = false; /** * Retrieves the object identifier assigned for the LDAP control. * * @return The non-null object identifier string. */ public String getID(); /** * Determines the criticality of the LDAP control. * A critical control must not be ignored by the server. * In other words, if the server receives a critical control * that it does not support, regardless of whether the control * makes sense for the operation, the operation will not be performed * and an {@code OperationNotSupportedException} will be thrown. * @return true if this control is critical; false otherwise. */ public boolean isCritical(); /** * Retrieves the ASN.1 BER encoded value of the LDAP control. * The result is the raw BER bytes including the tag and length of * the control's value. It does not include the controls OID or criticality. * * Null is returned if the value is absent. * * @return A possibly null byte array representing the ASN.1 BER encoded * value of the LDAP control. */ public byte[] getEncodedValue(); // static final long serialVersionUID = -591027748900004825L; }
⏎ javax/naming/ldap/Control.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, 57188👍, 0💬
Popular Posts:
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
MP3SPI is a Java Service Provider Interface that adds MP3 (MPEG 1/2/2.5 Layer 1/2/3) audio format su...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
JDK 11 jdk.internal.le.jmod is the JMOD file for JDK 11 Internal Line Editing module. JDK 11 Interna...
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...