JXTA

Uses of Class
net.jxta.protocol.AccessPointAdvertisement

Packages that use AccessPointAdvertisement
net.jxta.protocol Provides inteface objects for Advertisments and protocol messages for the JXTA Core and Standard Protocols. 
 

Uses of AccessPointAdvertisement in net.jxta.protocol
 

Methods in net.jxta.protocol that return AccessPointAdvertisement
 AccessPointAdvertisement AccessPointAdvertisement.clone()
          

Make a deep copy.

 AccessPointAdvertisement RouteAdvertisement.getDest()
          Deprecated. Because this method unsafely exposes destination AccessPointAdvertisement it will be removed.
 AccessPointAdvertisement RouteAdvertisement.getFirstHop()
          Returns the AccessPointAdvertisement of first hop.
 AccessPointAdvertisement RouteAdvertisement.getHop(PeerID pid)
          Return a hop from the list of hops.
 AccessPointAdvertisement RouteAdvertisement.getLastHop()
          Returns the access point for the last hop.
 AccessPointAdvertisement RouteAdvertisement.nextHop(PeerID currentHop)
          Return the hop that follows the specified currentHop.
 

Methods in net.jxta.protocol that return types with arguments of type AccessPointAdvertisement
 Enumeration<AccessPointAdvertisement> RouteAdvertisement.getHops()
          returns the list of hops
 Vector<AccessPointAdvertisement> RouteAdvertisement.getVectorHops()
          returns the list of hops
 

Methods in net.jxta.protocol with parameters of type AccessPointAdvertisement
 void RouteAdvertisement.setDest(AccessPointAdvertisement ap)
          Sets the access point of the destination.
 void RouteAdvertisement.setFirstHop(AccessPointAdvertisement ap)
          Sets the AccessPointAdvertisement for the first hop.
 void RouteAdvertisement.setLastHop(AccessPointAdvertisement ap)
          Sets the AccessPointAdvertisement of the last hop.
 

Method parameters in net.jxta.protocol with type arguments of type AccessPointAdvertisement
static RouteAdvertisement RouteAdvertisement.newRoute(PeerID destPid, PeerID firsthop, Vector<AccessPointAdvertisement> hops)
          construct a new route

WARNING hops may be MODIFIED.

 void RouteAdvertisement.setHops(Vector<AccessPointAdvertisement> newHops)
          Sets the list of hops associated with this route.
 


JXSE