/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2009 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: GroupSubject.java,v 1.1 2009/08/19 05:40:33 veiming Exp $
*
* Portions copyright 2014-2015 ForgeRock AS.
*/
/**
* This class represents group identity for membership check
*
* @deprecated As of ForgeRock OpenAM 12.
*/
/**
* Constructor.
*/
public GroupSubject() {
super();
}
/**
* Constructor.
*
* @param group the uuid of the group who is member of the
* EntitlementSubject.
*/
super(group);
}
/**
* Constructs GroupSubject
*
* @param group the uuid of the group who is member of the
* EntitlementSubject
* @param pSubjectName subject name as used in OpenAM policy,
* this is relevant only when GroupSubject was created from
* OpenAM policy Subject
*/
super(group, pSubjectName);
}
/**
* Returns <code>SubjectDecision</code> of
* <code>EntitlementSubject</code> evaluation.
*
* @param realm Realm name.
* @param subject EntitlementSubject who is under evaluation.
* @param resourceName Resource name.
* @param environment Environment parameters.
* @return <code>SubjectDecision</code> of
* <code>EntitlementSubject</code> evaluation
* @throws com.sun.identity.entitlement, EntitlementException in case
* of any error
*/
throws EntitlementException {
boolean satified = false;
}
}
/**
* Returns search index attributes.
*
* @return search index attributes.
*/
{
GROUP_NAME, set);
}
{
}
return map;
}
/**
* Returns required attribute names.
*
* @return required attribute names.
*/
return set;
}
/**
* Returns <code>true</code> is this subject is an identity object.
*
* @return <code>true</code> is this subject is an identity object.
*/
public boolean isIdentity() {
return true;
}
}