![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.wiki.auth.GroupPrincipal Maven / Gradle / Ivy
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
package org.apache.wiki.auth;
import java.io.Serializable;
import java.security.Principal;
/**
* Immutable Principal that represents a Group. GroupPrincipals are injected
* into a Subject's principal list at the time of authentication (login), and
* serve as proxies for Group objects for the purposes of making Java 2 security
* policy decisions. We add GroupPrincipals instead of the actual Groups because
* calling classes should never be able to obtain a mutable object (Group
* memberships can be changed by callers). Administrators who wish to grant
* privileges to specific wiki groups via the security policy file should always specify
* principals of type GroupPrincipal.
* @see org.apache.wiki.auth.authorize.Group
* @since 2.3.79
*/
public final class GroupPrincipal implements Principal, Serializable
{
private static final long serialVersionUID = 123123123123L;
private final String m_name;
/**
* Constructs a new GroupPrincipal object with a supplied name.
*
* @param group the wiki group; cannot be null
*/
public GroupPrincipal(final String group )
{
if ( group == null )
{
throw new IllegalArgumentException( "Group parameter cannot be null." );
}
m_name = group;
}
/**
* Returns the name of the group principal.
* @return the name
* @see java.security.Principal#getName()
*/
@Override
public String getName()
{
return m_name;
}
/**
* Two GroupPrincipals are equal if their names are equal.
* @param obj the object to compare
* @return the result of the equality test
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(final Object obj )
{
if ( !( obj instanceof GroupPrincipal ) )
{
return false;
}
final GroupPrincipal p = (GroupPrincipal)obj;
return p.m_name.equals( m_name );
}
/**
* Returns the hashcode for this object.
* @return the hash code
* @see java.lang.Object#hashCode()
*/
public int hashCode()
{
return m_name.hashCode();
}
/**
* Returns a string representation of this object.
* @return the string
* @see java.lang.Object#toString()
*/
public String toString()
{
return "[GroupPrincipal " + m_name + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy