Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/com/sun/security/auth/NTSidUserPrincipal.java
38924 views
/*1* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package com.sun.security.auth;2627/**28* <p> This class extends <code>NTSid</code>29* and represents a Windows NT user's SID.30*31* <p> Principals such as this <code>NTSidUserPrincipal</code>32* may be associated with a particular <code>Subject</code>33* to augment that <code>Subject</code> with an additional34* identity. Refer to the <code>Subject</code> class for more information35* on how to achieve this. Authorization decisions can then be based upon36* the Principals associated with a <code>Subject</code>.37*38* @see java.security.Principal39* @see javax.security.auth.Subject40*/41@jdk.Exported42public class NTSidUserPrincipal extends NTSid {4344private static final long serialVersionUID = -5573239889517749525L;4546/**47* Create an <code>NTSidUserPrincipal</code> with a Windows NT SID.48*49* <p>50*51* @param name a string version of the Windows NT SID for this user.<p>52*53* @exception NullPointerException if the <code>name</code>54* is <code>null</code>.55*/56public NTSidUserPrincipal(String name) {57super(name);58}5960/**61* Return a string representation of this <code>NTSidUserPrincipal</code>.62*63* <p>64*65* @return a string representation of this <code>NTSidUserPrincipal</code>.66*/67public String toString() {68java.text.MessageFormat form = new java.text.MessageFormat69(sun.security.util.ResourcesMgr.getString70("NTSidUserPrincipal.name",71"sun.security.util.AuthResources"));72Object[] source = {getName()};73return form.format(source);74}7576/**77* Compares the specified Object with this <code>NTSidUserPrincipal</code>78* for equality. Returns true if the given object is also a79* <code>NTSidUserPrincipal</code> and the two NTSidUserPrincipals80* have the same SID.81*82* <p>83*84* @param o Object to be compared for equality with this85* <code>NTSidUserPrincipal</code>.86*87* @return true if the specified Object is equal equal to this88* <code>NTSidUserPrincipal</code>.89*/90public boolean equals(Object o) {91if (o == null)92return false;9394if (this == o)95return true;9697if (!(o instanceof NTSidUserPrincipal))98return false;99100return super.equals(o);101}102}103104105