![JAR search and dependency download from the Maven repository](/logo.png)
javax.security.auth.message.callback.GroupPrincipalCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-jaspi-api_1.0_spec Show documentation
Show all versions of jboss-jaspi-api_1.0_spec Show documentation
JSR-196: Java Authentication SPI for Containers 1.0 API
The newest version!
package javax.security.auth.message.callback;
import javax.security.auth.Subject;
import javax.security.auth.callback.Callback;
//$Id$
/**
*
* @author [email protected]
* @since Jul 11, 2007
* @version $Revision$
*/
public class GroupPrincipalCallback implements Callback
{
private Subject subject;
private String[] groups;
public GroupPrincipalCallback(javax.security.auth.Subject s, java.lang.String[] g)
{
this.subject = s;
this.groups = g;
}
public String[] getGroups()
{
return this.groups;
}
public Subject getSubject()
{
return this.subject;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy