JXTA

Uses of Class
net.jxta.protocol.PeerAdvertisement

Packages that use PeerAdvertisement
net.jxta.peergroup Peer groups are formed as a collection of peers that have agreed upon a common set of services. 
net.jxta.protocol Provides inteface objects for Advertisments and protocol messages for the JXTA Core and Standard Protocols. 
net.jxta.rendezvous The RendezVous Service is responsible for propagating messages within a JXTA PeerGroup. 
net.jxta.socket The socket package provides interface ala Socket over JXTA pipes. 
net.jxta.util A collection of utility classes used by the JXTA implementation and/or useful to users of the JXTA API. 
 

Uses of PeerAdvertisement in net.jxta.peergroup
 

Methods in net.jxta.peergroup that return PeerAdvertisement
 PeerAdvertisement LightWeightPeerGroup.getPeerAdvertisement()
          Return the PeerAdvertisement of the local Peer within this Peer Group.
 PeerAdvertisement PeerGroup.getPeerAdvertisement()
          Return the PeerAdvertisement of the local Peer within this Peer Group.
 

Uses of PeerAdvertisement in net.jxta.protocol
 

Fields in net.jxta.protocol declared as PeerAdvertisement
protected  PeerAdvertisement DiscoveryResponseMsg.peerAdvertisement
          Responding peer's advertisement
 

Methods in net.jxta.protocol that return PeerAdvertisement
 PeerAdvertisement PeerAdvertisement.clone()
          
 PeerAdvertisement PipeResolverMessage.getInputPeerAdv()
           
 PeerAdvertisement DiscoveryQueryMsg.getPeerAdvertisement()
          returns the querying peer's advertisement
 PeerAdvertisement DiscoveryResponseMsg.getPeerAdvertisement()
          returns the responding peer's advertisement
 

Methods in net.jxta.protocol with parameters of type PeerAdvertisement
 void PipeResolverMessage.setInputPeerAdv(PeerAdvertisement peerAdv)
           
 void DiscoveryQueryMsg.setPeerAdvertisement(PeerAdvertisement newAdv)
          returns the responding peer's advertisement
 void DiscoveryResponseMsg.setPeerAdvertisement(PeerAdvertisement newAdv)
          Sets the responding peer's advertisement
 

Uses of PeerAdvertisement in net.jxta.rendezvous
 

Methods in net.jxta.rendezvous with parameters of type PeerAdvertisement
 void RendezVousService.connectToRendezVous(PeerAdvertisement adv)
          Deprecated. Directly connecting to rendezvous peers is not recommended. Seed rendezvous should be specified using the RdvConfigAdv mechanisms.
 

Uses of PeerAdvertisement in net.jxta.socket
 

Methods in net.jxta.socket that return PeerAdvertisement
 PeerAdvertisement JxtaSocketAddress.getPeerAdvertisement()
          Returns the PeerID element of the address.
 

Methods in net.jxta.socket with parameters of type PeerAdvertisement
protected  JxtaSocket JxtaServerSocket.createEphemeralSocket(PeerGroup group, PipeAdvertisement pipeAdv, PipeAdvertisement remoteEphemeralPipeAdv, PeerAdvertisement remotePeerAdv, Credential localCredential, Credential credential, boolean isReliable)
          Construct the emphemeral socket result from accept.
protected static Messenger JxtaSocket.lightweightOutputPipe(PeerGroup group, PipeAdvertisement pipeAdv, PeerAdvertisement peerAdv)
          A lightweight output pipe constructor, note the return type Since all the info needed is available, there's no need for to use the pipe service to resolve the pipe we have all we need to construct a messenger.
 

Constructors in net.jxta.socket with parameters of type PeerAdvertisement
JxtaSocket(PeerGroup group, PipeAdvertisement pipeAdv, PipeAdvertisement remoteEphemeralPipeAdv, PeerAdvertisement remotePeerAdv, Credential localCredential, Credential remoteCredential, boolean isReliable)
          This constructor is used by JxtaServer socket for creating JxtaSocket instances in response to incoming connections.
JxtaSocketAddress(PeerGroup peerGroup, PipeAdvertisement pipeAdv, PeerAdvertisement peerAdv)
          Creates a new instance of JxtaSocketAddress.
 

Uses of PeerAdvertisement in net.jxta.util
 

Methods in net.jxta.util that return PeerAdvertisement
static PeerAdvertisement AdvertisementUtilities.getPeerAdvertisement(Element root)
          Deprecated. These utilities are too specialized for general use.
 PeerAdvertisement JxtaBiDiPipe.getRemotePeerAdvertisement()
          Returns remote PeerAdvertisement
 

Methods in net.jxta.util with parameters of type PeerAdvertisement
static void AdvertisementUtilities.cachePeerAdvertisement(PeerGroup peerGroup, PeerAdvertisement peerAdvertisement)
          Deprecated. Publish and advertisement to the Cache
protected static Messenger JxtaBiDiPipe.getDirectMessenger(PeerGroup group, PipeAdvertisement pipeAdv, PeerAdvertisement peer)
          A lightweight direct messenger output pipe constructor, note the return type Since all the info needed is available, there's no need for to use the pipe service to resolve the pipe we have all we need to construct a messenger.
protected static Messenger JxtaBiDiPipe.lightweightOutputPipe(PeerGroup group, PipeAdvertisement pipeAdv, PeerAdvertisement peer)
          A lightweight output pipe constructor, note the return type Since all the info needed is available, there's no need for to use the pipe service to resolve the pipe we have all we need to construct a messenger.
protected  void JxtaBiDiPipe.setRemotePeerAdvertisement(PeerAdvertisement peer)
          Sets the remote PeerAdvertisement
 


JXSE