Synergy Home Page

au.edu.swin.synergy.plugin.userdb.event
Class BGetGroupsCE

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--au.edu.swin.synergy.kernel.BCommandEvent
              |
              +--au.edu.swin.synergy.plugin.userdb.event.BUserDBCE
                    |
                    +--au.edu.swin.synergy.plugin.userdb.event.BGetUsersCE
                          |
                          +--au.edu.swin.synergy.plugin.userdb.event.BGetGroupsCE

public class BGetGroupsCE
extends BGetUsersCE

This is similar to BGetUsersCE but, as the name suggets, it will retrieve the list of available groups in the database.

Author:
Tristan Austin Please complete these missing tags
Copyright Belongs To:
 
See Also:
Serialized Form

Fields inherited from class au.edu.swin.synergy.kernel.BCommandEvent
connectionID, index, kBroadcast, kClient, kClientDone, kLocal, kServer, kServerDone, networkStatus, serialVersionUID
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
BGetGroupsCE(Object source, BCommandComplete complete)
          Creates the get groups event with the source and complete object provided.
 
Method Summary
 Vector getGroups()
          Gets the list of available groups in a Vector.
 void setGroups(Vector newGroups)
          Sets the groups provided as the groups retrieved.
 
Methods inherited from class au.edu.swin.synergy.plugin.userdb.event.BGetUsersCE
getUsers, setUsers
 
Methods inherited from class au.edu.swin.synergy.kernel.BCommandEvent
decrementThreadCount, doComplete, doInit, getAutoComplete, getCompletionObject, getCompletionStatus, getConnectionID, getIndex, getNetworkStatus, getPipe, getUndoable, setAutoComplete, setCompletionObject, setCompletionStatus, setConnectionID, setIndex, setNetworkStatus, setPipe, setThreadCount, setUndoable
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BGetGroupsCE

public BGetGroupsCE(Object source,
                    BCommandComplete complete)
Creates the get groups event with the source and complete object provided.
Parameters:
source - The object this event was created in
complete - The completion object to call when the groups are done Please complete the missing tags for BGetGroupsCE
Method Detail

getGroups

public Vector getGroups()
Gets the list of available groups in a Vector.
Parameters:
-  
Returns:
a Vector of BGroup objects Please complete the missing tags for getGroups
Pre Condition:
 
Post Condition:
 

setGroups

public void setGroups(Vector newGroups)
Sets the groups provided as the groups retrieved.
Parameters:
newGroups - The groups to return Please complete the missing tags for setGroups
Returns:
 
Pre Condition:
 
Post Condition:
 

Synergy Home Page