Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/com/sun/security/auth/NTSidGroupPrincipal.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 one of the groups to which a Windows NT user belongs.30*31* <p> Principals such as this <code>NTSidGroupPrincipal</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* @see com.sun.security.auth.NTSid41*/42@jdk.Exported43public class NTSidGroupPrincipal extends NTSid {4445private static final long serialVersionUID = -1373347438636198229L;4647/**48* Create an <code>NTSidGroupPrincipal</code> with a Windows NT group name.49*50* <p>51*52* @param name the Windows NT group SID for this user. <p>53*54* @exception NullPointerException if the <code>name</code>55* is <code>null</code>.56*/57public NTSidGroupPrincipal(String name) {58super(name);59}6061/**62* Return a string representation of this <code>NTSidGroupPrincipal</code>.63*64* <p>65*66* @return a string representation of this <code>NTSidGroupPrincipal</code>.67*/68public String toString() {69java.text.MessageFormat form = new java.text.MessageFormat70(sun.security.util.ResourcesMgr.getString71("NTSidGroupPrincipal.name",72"sun.security.util.AuthResources"));73Object[] source = {getName()};74return form.format(source);75}7677/**78* Compares the specified Object with this <code>NTSidGroupPrincipal</code>79* for equality. Returns true if the given object is also a80* <code>NTSidGroupPrincipal</code> and the two NTSidGroupPrincipals81* have the same SID.82*83* <p>84*85* @param o Object to be compared for equality with this86* <code>NTSidGroupPrincipal</code>.87*88* @return true if the specified Object is equal equal to this89* <code>NTSidGroupPrincipal</code>.90*/91public boolean equals(Object o) {92if (o == null)93return false;9495if (this == o)96return true;9798if (!(o instanceof NTSidGroupPrincipal))99return false;100101return super.equals(o);102}103104}105106107