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/A/**
0N/A * <p> This class extends <code>NTSid</code>
0N/A * and represents a Windows NT user's domain SID.
0N/A *
0N/A * <p> An NT user only has a domain SID if in fact they are logged
0N/A * into an NT domain. If the user is logged into a workgroup or
0N/A * just a standalone configuration, they will NOT have a domain SID.
0N/A *
0N/A * <p> Principals such as this <code>NTSidDomainPrincipal</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 *
0N/A * @see java.security.Principal
0N/A * @see javax.security.auth.Subject
0N/A */
0N/Apublic class NTSidDomainPrincipal extends NTSid {
0N/A
0N/A private static final long serialVersionUID = 5247810785821650912L;
0N/A
0N/A /**
0N/A * Create an <code>NTSidDomainPrincipal</code> with a Windows NT SID.
0N/A *
0N/A * <p>
0N/A *
0N/A * @param name a string version of the Windows NT SID for this
0N/A * user's domain.<p>
0N/A *
0N/A * @exception NullPointerException if the <code>name</code>
0N/A * is <code>null</code>.
0N/A */
0N/A public NTSidDomainPrincipal(String name) {
0N/A super(name);
0N/A }
0N/A
0N/A /**
0N/A * Return a string representation of this <code>NTSidDomainPrincipal</code>.
0N/A *
0N/A * <p>
0N/A *
0N/A * @return a string representation of this
0N/A * <code>NTSidDomainPrincipal</code>.
0N/A */
0N/A public String toString() {
0N/A java.text.MessageFormat form = new java.text.MessageFormat
0N/A (sun.security.util.ResourcesMgr.getString
3050N/A ("NTSidDomainPrincipal.name",
0N/A "sun.security.util.AuthResources"));
0N/A Object[] source = {getName()};
0N/A return form.format(source);
0N/A }
0N/A
0N/A /**
0N/A * Compares the specified Object with this <code>NTSidDomainPrincipal</code>
0N/A * for equality. Returns true if the given object is also a
0N/A * <code>NTSidDomainPrincipal</code> and the two NTSidDomainPrincipals
0N/A * have the same SID.
0N/A *
0N/A * <p>
0N/A *
0N/A * @param o Object to be compared for equality with this
0N/A * <code>NTSidDomainPrincipal</code>.
0N/A *
0N/A * @return true if the specified Object is equal equal to this
0N/A * <code>NTSidDomainPrincipal</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 NTSidDomainPrincipal))
0N/A return false;
0N/A
0N/A return super.equals(o);
0N/A }
0N/A}