Oracle Entitlements Server Provider SSPI API Reference

weblogic.security.service
Class GroupCallback

java.lang.Object
  |
  +--weblogic.security.service.GroupCallback

public class GroupCallback
extends java.lang.Object
implements javax.security.auth.callback.Callback

A GroupCallback impliments the javax.security.auth.Callback interface. It supports the sending back a Collection of Strings.

Author:
Copyright © 2004-2008, Oracle and/or its affiliates. All rights reserved.

Constructor Summary
GroupCallback(java.lang.String prompt)
          Construct a GroupCallback with a prompt.
 
Method Summary
 java.lang.String getPrompt()
          Get the prompt.
 java.util.Collection getValue()
          Gets the Collection of Groups as Strings.
 void setValue(java.util.Collection value)
          Sets the Collection of Groups as strings.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GroupCallback

public GroupCallback(java.lang.String prompt)
Construct a GroupCallback with a prompt.

Parameters:
prompt - the prompt used to request the list of Groups.

Method Detail

getPrompt

public java.lang.String getPrompt()
Get the prompt.

Returns:
prompt the prompt.


getValue

public java.util.Collection getValue()
Gets the Collection of Groups as Strings.

Returns:
Collection of Strings.

See Also:
setValue(java.util.Collection)

setValue

public void setValue(java.util.Collection value)
Sets the Collection of Groups as strings.

Parameters:
value - Collection of Strings.

See Also:
getValue()