Package tigase.push.api
Interface IPushSettings
-
- All Known Implementing Classes:
PushSettings
public interface IPushSettingsCreated by andrzej on 02.01.2017.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceIPushSettings.IDevice
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description IPushSettingsaddDevice(IPushSettings.IDevice device)java.util.List<IPushSettings.IDevice>getDevices()java.lang.StringgetNode()tigase.xmpp.jid.BareJIDgetOwnerJid()tigase.xmpp.jid.BareJIDgetServiceJid()intgetVersion()default booleanisOwner(tigase.xmpp.jid.BareJID jid)IPushSettingsremoveDevice(IPushSettings.IDevice device)
-
-
-
Method Detail
-
getVersion
int getVersion()
-
getDevices
java.util.List<IPushSettings.IDevice> getDevices()
-
getNode
java.lang.String getNode()
-
getOwnerJid
tigase.xmpp.jid.BareJID getOwnerJid()
-
getServiceJid
tigase.xmpp.jid.BareJID getServiceJid()
-
isOwner
default boolean isOwner(tigase.xmpp.jid.BareJID jid)
-
addDevice
IPushSettings addDevice(IPushSettings.IDevice device)
-
removeDevice
IPushSettings removeDevice(IPushSettings.IDevice device)
-
-