Uses of Interface
org.mega.gasp.platform.Actor

Packages that use Actor
org.mega.gasp.platform   
org.mega.gasp.platform.impl   
 

Uses of Actor in org.mega.gasp.platform
 

Methods in org.mega.gasp.platform that return Actor
 Actor MasterApplicationInstance.getActor(int aID)
          Return the Actor object associated with the actorID.
 Actor DBManager.getActorIfAuthentificationOK(int aID, java.lang.String username, java.lang.String password)
          Verify if the login authentification of an Actor is valid then return the authentified actor or null.
 

Methods in org.mega.gasp.platform with parameters of type Actor
 void MasterApplicationInstance.addActor(Actor actor)
          Add the Actor object actor to the vector of actors in the Master Application.
 

Uses of Actor in org.mega.gasp.platform.impl
 

Classes in org.mega.gasp.platform.impl that implement Actor
 class ActorImpl
          Actor represents the link between an application and a user.
 

Methods in org.mega.gasp.platform.impl that return Actor
 Actor MasterApplicationInstanceImpl.getActor(int aID)
          Return the Actor object associated with the actorID.
 Actor DBManagerImpl.getActorIfAuthentificationOK(int aID, java.lang.String username, java.lang.String password)
          Verify if the login authentification of an Actor is valid then return the authentified actor or null.
 

Methods in org.mega.gasp.platform.impl with parameters of type Actor
 void MasterApplicationInstanceImpl.addActor(Actor actor)
          Add the Actor object actor to the vector of actors in the Master Application.