Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/com/sun/security/auth/NTSidDomainPrincipal.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 domain SID.30*31* <p> An NT user only has a domain SID if in fact they are logged32* into an NT domain. If the user is logged into a workgroup or33* just a standalone configuration, they will NOT have a domain SID.34*35* <p> Principals such as this <code>NTSidDomainPrincipal</code>36* may be associated with a particular <code>Subject</code>37* to augment that <code>Subject</code> with an additional38* identity. Refer to the <code>Subject</code> class for more information39* on how to achieve this. Authorization decisions can then be based upon40* the Principals associated with a <code>Subject</code>.41*42* @see java.security.Principal43* @see javax.security.auth.Subject44*/45@jdk.Exported46public class NTSidDomainPrincipal extends NTSid {4748private static final long serialVersionUID = 5247810785821650912L;4950/**51* Create an <code>NTSidDomainPrincipal</code> with a Windows NT SID.52*53* <p>54*55* @param name a string version of the Windows NT SID for this56* user's domain.<p>57*58* @exception NullPointerException if the <code>name</code>59* is <code>null</code>.60*/61public NTSidDomainPrincipal(String name) {62super(name);63}6465/**66* Return a string representation of this <code>NTSidDomainPrincipal</code>.67*68* <p>69*70* @return a string representation of this71* <code>NTSidDomainPrincipal</code>.72*/73public String toString() {74java.text.MessageFormat form = new java.text.MessageFormat75(sun.security.util.ResourcesMgr.getString76("NTSidDomainPrincipal.name",77"sun.security.util.AuthResources"));78Object[] source = {getName()};79return form.format(source);80}8182/**83* Compares the specified Object with this <code>NTSidDomainPrincipal</code>84* for equality. Returns true if the given object is also a85* <code>NTSidDomainPrincipal</code> and the two NTSidDomainPrincipals86* have the same SID.87*88* <p>89*90* @param o Object to be compared for equality with this91* <code>NTSidDomainPrincipal</code>.92*93* @return true if the specified Object is equal equal to this94* <code>NTSidDomainPrincipal</code>.95*/96public boolean equals(Object o) {97if (o == null)98return false;99100if (this == o)101return true;102103if (!(o instanceof NTSidDomainPrincipal))104return false;105106return super.equals(o);107}108}109110111