|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Scopes in org.livetribe.slp |
---|
Fields in org.livetribe.slp declared as Scopes | |
---|---|
static Scopes |
Scopes.DEFAULT
The DEFAULT scope is just like any other scope, only that's used by DirectoryAgents and
ServiceAgents as their default scope. |
static Scopes |
Scopes.WILDCARD
The WILDCARD scope is special, as it does not match any scope, and all other scopes will match it. |
Methods in org.livetribe.slp that return Scopes | |
---|---|
Scopes |
ServiceInfo.getScopes()
Returns the Scopes of this ServiceInfo . |
Methods in org.livetribe.slp with parameters of type Scopes | |
---|---|
protected ServiceInfo |
ServiceInfo.clone(ServiceType serviceType,
ServiceURL serviceURL,
Scopes scopes,
Attributes attributes,
String language)
Returns a new clone of this ServiceInfo with the given arguments. |
boolean |
Scopes.match(Scopes other)
Matches the given Scopes argument against this Scopes object. |
boolean |
Scopes.weakMatch(Scopes other)
Matches the given Scopes argument against this Scopes object,
more weakly than match(Scopes) . |
Constructors in org.livetribe.slp with parameters of type Scopes | |
---|---|
ServiceInfo(ServiceType serviceType,
ServiceURL serviceURL,
Scopes scopes,
Attributes attributes,
String language)
Creates a ServiceInfo from the given arguments; the ServiceInfo.ServiceInfo(ServiceURL, Scopes, Attributes, String)
constructor should be preferred to this one, as it does not introduce ambiguity between the
ServiceType argument and the ServiceType of the ServiceURL argument. |
|
ServiceInfo(ServiceURL serviceURL,
Scopes scopes,
Attributes attributes,
String language)
Creates a ServiceInfo from a the given arguments. |
Uses of Scopes in org.livetribe.slp.api |
---|
Methods in org.livetribe.slp.api that return Scopes | |
---|---|
Scopes |
StandardAgent.getScopes()
|
Methods in org.livetribe.slp.api with parameters of type Scopes | |
---|---|
void |
Agent.setScopes(Scopes scopes)
|
void |
StandardAgent.setScopes(Scopes scopes)
|
Constructors in org.livetribe.slp.api with parameters of type Scopes | |
---|---|
MatchingServiceInfoCache(ServiceType serviceType,
Scopes matchingScopes,
String matchingFilter,
String matchingLanguage)
|
Uses of Scopes in org.livetribe.slp.api.sa |
---|
Methods in org.livetribe.slp.api.sa with parameters of type Scopes | |
---|---|
protected List |
StandardServiceAgent.discoverDirectoryAgents(Scopes scopes)
|
protected List |
StandardServiceAgent.findDirectoryAgents(Scopes scopes)
|
protected List |
StandardServiceAgent.getCachedDirectoryAgents(Scopes scopes)
|
Uses of Scopes in org.livetribe.slp.api.ua |
---|
Methods in org.livetribe.slp.api.ua with parameters of type Scopes | |
---|---|
protected List |
StandardUserAgent.discoverDirectoryAgents(Scopes scopes,
String filter)
|
List |
StandardUserAgent.findDirectoryAgents(Scopes scopes,
String filter)
|
List |
StandardUserAgent.findServiceAgents(Scopes scopes,
String filter)
|
List |
StandardUserAgent.findServices(ServiceType serviceType,
Scopes scopes,
String filter,
String language)
Returns a list of ServiceInfo that are available on the network, and that match the given arguments. |
List |
UserAgent.findServices(ServiceType serviceType,
Scopes scopes,
String filter,
String language)
|
protected List |
StandardUserAgent.getCachedDirectoryAgents(Scopes scopes,
String filter)
|
Uses of Scopes in org.livetribe.slp.spi |
---|
Methods in org.livetribe.slp.spi with parameters of type Scopes | |
---|---|
List |
ServiceInfoCache.match(ServiceType serviceType,
Scopes scopes,
Filter filter,
String language)
|
Uses of Scopes in org.livetribe.slp.spi.da |
---|
Methods in org.livetribe.slp.spi.da that return Scopes | |
---|---|
Scopes |
DirectoryAgentInfo.getScopes()
|
Methods in org.livetribe.slp.spi.da with parameters of type Scopes | |
---|---|
List |
DirectoryAgentInfoCache.getByScopes(Scopes scopes)
|
boolean |
DirectoryAgentInfo.matchScopes(Scopes others)
Returns true if at least one of the given scopes is also a scope of this DirectoryAgentInfo |
void |
DirectoryAgentManager.multicastDAAdvert(long bootTime,
Scopes scopes,
Attributes attributes,
Integer xid,
String language)
|
void |
StandardDirectoryAgentManager.multicastDAAdvert(long bootTime,
Scopes scopes,
Attributes attributes,
Integer xid,
String language)
|
void |
DirectoryAgentManager.udpDAAdvert(InetSocketAddress address,
long bootTime,
Scopes scopes,
Attributes attributes,
Integer xid,
String language)
|
void |
StandardDirectoryAgentManager.udpDAAdvert(InetSocketAddress address,
long bootTime,
Scopes scopes,
Attributes attributes,
Integer xid,
String language)
|
Uses of Scopes in org.livetribe.slp.spi.msg |
---|
Methods in org.livetribe.slp.spi.msg that return Scopes | |
---|---|
Scopes |
DAAdvert.getScopes()
|
Scopes |
SrvReg.getScopes()
|
Scopes |
SrvDeReg.getScopes()
|
Scopes |
SrvRqst.getScopes()
|
Scopes |
SAAdvert.getScopes()
|
Methods in org.livetribe.slp.spi.msg with parameters of type Scopes | |
---|---|
protected static byte[] |
Message.scopesToBytes(Scopes scopes)
|
void |
DAAdvert.setScopes(Scopes scopes)
|
void |
SrvReg.setScopes(Scopes scopes)
|
void |
SrvDeReg.setScopes(Scopes scopes)
|
void |
SrvRqst.setScopes(Scopes scopes)
|
void |
SAAdvert.setScopes(Scopes scopes)
|
Uses of Scopes in org.livetribe.slp.spi.sa |
---|
Methods in org.livetribe.slp.spi.sa that return Scopes | |
---|---|
Scopes |
ServiceAgentInfo.getScopes()
|
Methods in org.livetribe.slp.spi.sa with parameters of type Scopes | |
---|---|
DAAdvert[] |
StandardServiceAgentManager.multicastDASrvRqst(Scopes scopes,
String filter,
String language,
long timeframe)
|
DAAdvert[] |
ServiceAgentManager.multicastDASrvRqst(Scopes scopes,
String filter,
String language,
long timeframe)
|
Constructors in org.livetribe.slp.spi.sa with parameters of type Scopes | |
---|---|
ServiceAgentInfo(String identifier,
String url,
Scopes scopes,
Attributes attributes,
String language)
|
Uses of Scopes in org.livetribe.slp.spi.ua |
---|
Methods in org.livetribe.slp.spi.ua with parameters of type Scopes | |
---|---|
DAAdvert[] |
StandardUserAgentManager.multicastDASrvRqst(Scopes scopes,
String filter,
String language,
long timeframe)
|
DAAdvert[] |
UserAgentManager.multicastDASrvRqst(Scopes scopes,
String filter,
String language,
long timeframe)
|
SAAdvert[] |
StandardUserAgentManager.multicastSASrvRqst(Scopes scopes,
String filter,
String language,
int timeframe)
|
SAAdvert[] |
UserAgentManager.multicastSASrvRqst(Scopes scopes,
String filter,
String language,
int timeframe)
|
SrvRply[] |
StandardUserAgentManager.multicastSrvRqst(ServiceType serviceType,
Scopes scopes,
String filter,
String language,
int timeframe)
|
SrvRply[] |
UserAgentManager.multicastSrvRqst(ServiceType serviceType,
Scopes scopes,
String filter,
String language,
int timeframe)
|
SrvRply |
StandardUserAgentManager.tcpSrvRqst(InetAddress address,
ServiceType serviceType,
Scopes scopes,
String filter,
String language)
|
SrvRply |
UserAgentManager.tcpSrvRqst(InetAddress address,
ServiceType serviceType,
Scopes scopes,
String filter,
String language)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |