All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class iceberg.pref_reg.pref_rep

java.lang.Object
   |
   +----iceberg.pref_reg.pref_rep

public class pref_rep
extends Object
implements Serializable
Defines the format of a preference registry lookup reply


Variable Index

 o callee_id
Callee's network specific id.
 o FAILED
 o iap_url
Has RMI interface name and host name of preferred IAP.
 o OK
 o succ
Success code.

Constructor Index

 o pref_rep(String)
Construct a pref_rep structure from the string from an RMI call.
 o pref_rep(String, String, String)

Method Index

 o getStr()
Return the String representation that is appropriate for the return of the RMI call
 o toString()

Variables

 o succ
 public String succ
Success code. "OK" or "FAILED"

 o iap_url
 public String iap_url
Has RMI interface name and host name of preferred IAP. Invalid if succ is "FAILED"

 o callee_id
 public String callee_id
Callee's network specific id. Not to be interpreted by the caller IAP. In fact this could be a something like a capability returned to the caller IAP to call the callee IAP.

 o OK
 public static final String OK
 o FAILED
 public static final String FAILED

Constructors

 o pref_rep
 public pref_rep(String succ,
                 String iap_url,
                 String callee_id)
 o pref_rep
 public pref_rep(String rmiStr)
Construct a pref_rep structure from the string from an RMI call. The format of the string is the same as the one returned by pref_rep.getStr()

Methods

 o getStr
 public String getStr()
Return the String representation that is appropriate for the return of the RMI call

 o toString
 public String toString()
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index