Interface SoftwareInfo
-
- All Known Implementing Classes:
SoftwareInformation
,SoftwareVersion
public interface SoftwareInfo
A common interface for the different but similar software information protocols XEP-0232: Software Information and XEP-0092: Software Version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getOs()
The operating system on which the XMPP software is running.String
getSoftware()
Gets the XMPP software running at the entity.String
getSoftwareVersion()
Gets the XMPP software version.
-
-
-
Method Detail
-
getOs
String getOs()
The operating system on which the XMPP software is running.- Returns:
- The operating system.
-
getSoftware
String getSoftware()
Gets the XMPP software running at the entity.- Returns:
- The XMPP software running at the entity.
-
getSoftwareVersion
String getSoftwareVersion()
Gets the XMPP software version.- Returns:
- The XMPP software version.
-
-