< prev index next >

src/java.security.jgss/share/classes/sun/security/jgss/krb5/Krb5NameElement.java

Print this page

        

*** 196,207 **** /** * Equal method for the GSSNameSpi objects. * If either name denotes an anonymous principal, the call should * return false. * ! * @param name to be compared with ! * @returns true if they both refer to the same entity, else false * @exception GSSException with major codes of BAD_NAMETYPE, * BAD_NAME, FAILURE */ public boolean equals(GSSNameSpi other) throws GSSException { --- 196,207 ---- /** * Equal method for the GSSNameSpi objects. * If either name denotes an anonymous principal, the call should * return false. * ! * @param other to be compared with ! * @return true if they both refer to the same entity, else false * @exception GSSException with major codes of BAD_NAMETYPE, * BAD_NAME, FAILURE */ public boolean equals(GSSNameSpi other) throws GSSException {
*** 222,232 **** * the same as in {@link #equals(GSSNameSpi) equals} except that * no GSSException is thrown; instead, false will be returned in the * situation where an error occurs. * * @param another the object to be compared to ! * @returns true if they both refer to the same entity, else false * @see #equals(GSSNameSpi) */ public boolean equals(Object another) { if (this == another) { return true; --- 222,232 ---- * the same as in {@link #equals(GSSNameSpi) equals} except that * no GSSException is thrown; instead, false will be returned in the * situation where an error occurs. * * @param another the object to be compared to ! * @return true if they both refer to the same entity, else false * @see #equals(GSSNameSpi) */ public boolean equals(Object another) { if (this == another) { return true;
< prev index next >