JAFS API v2

Uses of Class
org.openafs.jafs.Partition

Uses of Partition in org.openafs.jafs
 

Fields in org.openafs.jafs declared as Partition
protected  Partition Volume.partition
           
 

Methods in org.openafs.jafs that return Partition
 Partition Volume.getPartition()
          Returns this volume's hosting partition.
 Partition Server.getPartition(String name)
          Retrieves the Partition object (which is an abstract representation of an actual AFS partition of this server) designated by name (i.e.
 Partition[] Server.getPartitions()
          Retrieves an array containing all of the Partition objects associated with this Server, each of which are an abstract representation of an actual AFS partition of the AFS server.
 

Methods in org.openafs.jafs with parameters of type Partition
 Volume Volume.createReadOnly(Partition sitePartition)
          Creates a readonly site for this volume on the specified server and partition.
 void Volume.moveTo(Partition newPartition)
          Moves this volume to the specified partition (which indirectly specifies a new server, as well).
 int Partition.compareTo(Partition partition)
          Compares two Partition objects respective to their names and does not factor any other attribute.
 boolean Partition.equals(Partition otherPartition)
          Tests whether two Partition objects are equal, based on their names and hosting server.
protected static void Partition.getPartitionInfo(int cellHandle, int serverHandle, int partition, Partition thePartition)
          Fills in the information fields of the provided Partition.
protected static int Server.getPartitionsNext(int iterationId, Partition thePartition)
          Fills the next partition object of the server.
 

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


JAFS API v2