Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/security/Principal.java
/* * @(#)Principal.java 1.16 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.security; /** * This interface represents a principal. A principal can be an * individual, a corporation, a program thread; anything which can * have an identity. See the <a href="../guide/security/Acl.html">ACL * white paper</a> for more information. * * @see Identity * @see Certificate * @see java.security.acl.Acl * @see java.security.acl.Group * * @version 1.16, 01/12/10 * @author Satish Dharmaraj */ public interface Principal { /** * Compares this principal to the specified object. Returns true * if the object passed in matches the principal represented by * the implementation of this interface. * * @param another the principal to compare with. * * @return true if * the principal passed in is the same as that encapsulated by * this principal, false otherwise. */ public boolean equals(Object another); /** * Returns a string representation of this principal. * * @return a string representation of this principal. */ public String toString(); /** * Returns a hashcode for this principal. * * @return a hashcode for this principal. */ public int hashCode(); /** * Returns the name of this principal. * * @return the name of this principal. */ public String getName(); }
⏎ java/security/Principal.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 39192👍, 0💬
Popular Posts:
This XML and Web Services Security implementation, included as part of the JavaTM Web Services Devel...
JDK 11 jdk.internal.vm.compiler .jmodis the JMOD file for JDK 11 Internal VM Compiler module. JDK 11...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
The Digester package lets you configure an XML -> Java object mapping module, which triggers certain...
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...