0N/A/*
3050N/A * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage com.sun.security.auth;
0N/A
0N/Aimport java.security.Principal;
0N/A
0N/A/**
0N/A * <p> This class implements the <code>Principal</code> interface
0N/A * and represents a user's Solaris identification number (UID).
0N/A *
0N/A * <p> Principals such as this <code>SolarisNumericUserPrincipal</code>
0N/A * may be associated with a particular <code>Subject</code>
0N/A * to augment that <code>Subject</code> with an additional
0N/A * identity. Refer to the <code>Subject</code> class for more information
0N/A * on how to achieve this. Authorization decisions can then be based upon
0N/A * the Principals associated with a <code>Subject</code>.
0N/A * @deprecated As of JDK&nbsp;1.4, replaced by
0N/A * {@link UnixNumericUserPrincipal}.
0N/A * This class is entirely deprecated.
0N/A *
0N/A * @see java.security.Principal
0N/A * @see javax.security.auth.Subject
0N/A */
0N/A@Deprecated
0N/Apublic class SolarisNumericUserPrincipal implements
0N/A Principal,
0N/A java.io.Serializable {
0N/A
0N/A private static final long serialVersionUID = -3178578484679887104L;
0N/A
0N/A private static final java.util.ResourceBundle rb =
0N/A java.security.AccessController.doPrivileged
0N/A (new java.security.PrivilegedAction<java.util.ResourceBundle>() {
0N/A public java.util.ResourceBundle run() {
0N/A return (java.util.ResourceBundle.getBundle
0N/A ("sun.security.util.AuthResources"));
0N/A }
0N/A });
0N/A
0N/A
0N/A /**
0N/A * @serial
0N/A */
0N/A private String name;
0N/A
0N/A /**
0N/A * Create a <code>SolarisNumericUserPrincipal</code> using a
0N/A * <code>String</code> representation of the
0N/A * user's identification number (UID).
0N/A *
0N/A * <p>
0N/A *
0N/A * @param name the user identification number (UID) for this user.
0N/A *
0N/A * @exception NullPointerException if the <code>name</code>
0N/A * is <code>null</code>.
0N/A */
0N/A public SolarisNumericUserPrincipal(String name) {
0N/A if (name == null)
3050N/A throw new NullPointerException(rb.getString("provided.null.name"));
0N/A
0N/A this.name = name;
0N/A }
0N/A
0N/A /**
0N/A * Create a <code>SolarisNumericUserPrincipal</code> using a
0N/A * long representation of the user's identification number (UID).
0N/A *
0N/A * <p>
0N/A *
0N/A * @param name the user identification number (UID) for this user
0N/A * represented as a long.
0N/A */
0N/A public SolarisNumericUserPrincipal(long name) {
0N/A this.name = (new Long(name)).toString();
0N/A }
0N/A
0N/A /**
0N/A * Return the user identification number (UID) for this
0N/A * <code>SolarisNumericUserPrincipal</code>.
0N/A *
0N/A * <p>
0N/A *
0N/A * @return the user identification number (UID) for this
0N/A * <code>SolarisNumericUserPrincipal</code>
0N/A */
0N/A public String getName() {
0N/A return name;
0N/A }
0N/A
0N/A /**
0N/A * Return the user identification number (UID) for this
0N/A * <code>SolarisNumericUserPrincipal</code> as a long.
0N/A *
0N/A * <p>
0N/A *
0N/A * @return the user identification number (UID) for this
0N/A * <code>SolarisNumericUserPrincipal</code> as a long.
0N/A */
0N/A public long longValue() {
0N/A return ((new Long(name)).longValue());
0N/A }
0N/A
0N/A /**
0N/A * Return a string representation of this
0N/A * <code>SolarisNumericUserPrincipal</code>.
0N/A *
0N/A * <p>
0N/A *
0N/A * @return a string representation of this
0N/A * <code>SolarisNumericUserPrincipal</code>.
0N/A */
0N/A public String toString() {
3050N/A return(rb.getString("SolarisNumericUserPrincipal.") + name);
0N/A }
0N/A
0N/A /**
0N/A * Compares the specified Object with this
0N/A * <code>SolarisNumericUserPrincipal</code>
0N/A * for equality. Returns true if the given object is also a
0N/A * <code>SolarisNumericUserPrincipal</code> and the two
0N/A * SolarisNumericUserPrincipals
0N/A * have the same user identification number (UID).
0N/A *
0N/A * <p>
0N/A *
0N/A * @param o Object to be compared for equality with this
0N/A * <code>SolarisNumericUserPrincipal</code>.
0N/A *
0N/A * @return true if the specified Object is equal equal to this
0N/A * <code>SolarisNumericUserPrincipal</code>.
0N/A */
0N/A public boolean equals(Object o) {
0N/A if (o == null)
0N/A return false;
0N/A
0N/A if (this == o)
0N/A return true;
0N/A
0N/A if (!(o instanceof SolarisNumericUserPrincipal))
0N/A return false;
0N/A SolarisNumericUserPrincipal that = (SolarisNumericUserPrincipal)o;
0N/A
0N/A if (this.getName().equals(that.getName()))
0N/A return true;
0N/A return false;
0N/A }
0N/A
0N/A /**
0N/A * Return a hash code for this <code>SolarisNumericUserPrincipal</code>.
0N/A *
0N/A * <p>
0N/A *
0N/A * @return a hash code for this <code>SolarisNumericUserPrincipal</code>.
0N/A */
0N/A public int hashCode() {
0N/A return name.hashCode();
0N/A }
0N/A}