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
-
callee_id
- Callee's network specific id.
-
FAILED
-
-
iap_url
- Has RMI interface name and host name of preferred IAP.
-
OK
-
-
succ
- Success code.
-
pref_rep(String)
- Construct a pref_rep structure from the string from an RMI call.
-
pref_rep(String, String, String)
-
-
getStr()
- Return the String representation that is appropriate for the
return of the RMI call
-
toString()
-
succ
public String succ
- Success code. "OK" or "FAILED"
iap_url
public String iap_url
- Has RMI interface name and host name of preferred IAP. Invalid
if succ is "FAILED"
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.
OK
public static final String OK
FAILED
public static final String FAILED
pref_rep
public pref_rep(String succ,
String iap_url,
String callee_id)
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()
getStr
public String getStr()
- Return the String representation that is appropriate for the
return of the RMI call
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index