Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/com/sun/security/auth/NTSidPrimaryGroupPrincipal.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 primary group SID.30*31* <p> Principals such as this <code>NTSidPrimaryGroupPrincipal</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 NTSidPrimaryGroupPrincipal extends NTSid {4344private static final long serialVersionUID = 8011978367305190527L;4546/**47* Create an <code>NTSidPrimaryGroupPrincipal</code> with a Windows NT48* group SID.49*50* <p>51*52* @param name the primary Windows NT group SID for this user. <p>53*54* @exception NullPointerException if the <code>name</code>55* is <code>null</code>.56*/57public NTSidPrimaryGroupPrincipal(String name) {58super(name);59}6061/**62* Return a string representation of this63* <code>NTSidPrimaryGroupPrincipal</code>.64*65* <p>66*67* @return a string representation of this68* <code>NTSidPrimaryGroupPrincipal</code>.69*/70public String toString() {71java.text.MessageFormat form = new java.text.MessageFormat72(sun.security.util.ResourcesMgr.getString73("NTSidPrimaryGroupPrincipal.name",74"sun.security.util.AuthResources"));75Object[] source = {getName()};76return form.format(source);77}7879/**80* Compares the specified Object with this81* <code>NTSidPrimaryGroupPrincipal</code>82* for equality. Returns true if the given object is also a83* <code>NTSidPrimaryGroupPrincipal</code> and the two84* NTSidPrimaryGroupPrincipals have the same SID.85*86* <p>87*88* @param o Object to be compared for equality with this89* <code>NTSidPrimaryGroupPrincipal</code>.90*91* @return true if the specified Object is equal equal to this92* <code>NTSidPrimaryGroupPrincipal</code>.93*/94public boolean equals(Object o) {95if (o == null)96return false;9798if (this == o)99return true;100101if (!(o instanceof NTSidPrimaryGroupPrincipal))102return false;103104return super.equals(o);105}106107}108109110