Interface DiscoverInfoView
-
- All Superinterfaces:
IqView
,StanzaView
,XmlLangElement
- All Known Implementing Classes:
DiscoverInfo
,DiscoverInfoBuilder
public interface DiscoverInfoView extends IqView
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<DiscoverInfo.Feature>
getFeatures()
Returns the discovered features of an XMPP entity.java.util.List<DiscoverInfo.Identity>
getIdentities()
Returns the discovered identities of an XMPP entity.java.lang.String
getNode()
Returns the node attribute that supplements the 'jid' attribute.-
Methods inherited from interface org.jivesoftware.smack.packet.IqView
getType, isRequestIQ, isResponseIQ
-
Methods inherited from interface org.jivesoftware.smack.packet.StanzaView
getError, getExtension, getExtension, getExtensions, getExtensions, getExtensions, getFrom, getStanzaId, getTo, hasExtension, hasExtension, hasExtension
-
Methods inherited from interface org.jivesoftware.smack.packet.XmlLangElement
getLanguage
-
-
-
-
Method Detail
-
getFeatures
java.util.List<DiscoverInfo.Feature> getFeatures()
Returns the discovered features of an XMPP entity.- Returns:
- an unmodifiable list of the discovered features of an XMPP entity
-
getIdentities
java.util.List<DiscoverInfo.Identity> getIdentities()
Returns the discovered identities of an XMPP entity.- Returns:
- an unmodifiable list of the discovered identities
-
getNode
java.lang.String getNode()
Returns the node attribute that supplements the 'jid' attribute. A node is merely something that is associated with a JID and for which the JID can provide information.Node attributes SHOULD be used only when trying to provide or query information which is not directly addressable.
- Returns:
- the node attribute that supplements the 'jid' attribute
-
-