JAFS API v2

Uses of Class
org.openafs.jafs.Server

Uses of Server in org.openafs.jafs
 

Fields in org.openafs.jafs declared as Server
protected  Server Process.server
           
protected  Server Key.server
           
protected  Server Volume.server
           
protected  Server Partition.server
           
 

Methods in org.openafs.jafs that return Server
 Server Process.getServer()
          Returns the server hosting this process.
 Server Key.getServer()
          Returns the server this key is associated with.
 Server Partition.getServer()
          Returns this partition's hosting server.
 Server Cell.getServer(String name)
          Retrieves the Server object (which is an abstract representation of an actual AFS server) designated by name.
 Server[] Cell.getServers()
          Retrieves an array containing all of the Server objects associated with this Cell, each of which are an abstract representation of an actual server of the AFS cell.
 

Methods in org.openafs.jafs with parameters of type Server
 int Server.compareTo(Server server)
          Compares two Server objects respective to their names and does not factor any other attribute.
 boolean Server.equals(Server otherServer)
          Tests whether two Server objects are equal, based on their names and hosting Cell.
protected static void Server.getServerInfo(int cellHandle, String name, Server server)
          Fills in the information fields of the provided Server.
protected static int Cell.getServersNext(int cellHandle, int iterationId, Server theServer)
          Fills the next server object of the cell.
 

Constructors in org.openafs.jafs with parameters of type Server
Process(String name, Server server)
          Constructs a new Process object instance given the name of the AFS process and the AFS server, represented by server, to which it belongs.
Process(String name, Server server, boolean preloadAllMembers)
          Constructs a new Process object instance given the name of the AFS process and the AFS server, represented by server, to which it belongs.
Process(Server server)
          Creates a blank Process given the server to which the process belongs.
Key(int version, Server server)
          Constructs a new Key object instance given the version of the AFS key and the AFS server, represented by server, to which it belongs.
Key(int version, Server server, boolean preloadAllMembers)
          Constructs a new Key object instance given the version of the AFS key and the AFS server, represented by server, to which it belongs.
Key(Server server)
          Creates a blank Key given the server to which the key belongs.
Partition(String name, Server server)
          Constructs a new Partition object instance given the name of the AFS partition and the AFS server, represented by server, to which it belongs.
Partition(String name, Server server, boolean preloadAllMembers)
          Constructs a new Partition object instance given the name of the AFS partition and the AFS server, represented by server, to which it belongs.
Partition(Server server)
          Creates a blank Server given the cell to which the partition belongs and the server on which the partition resides.
 


JAFS API v2