Uses of Class
tigase.jaxmpp.core.client.observer.EventType

Packages that use EventType
tigase.jaxmpp.core.client Core of JAXMPP library. 
tigase.jaxmpp.core.client.connector Classes for implementing Connectors. 
tigase.jaxmpp.core.client.observer Support for events broadcasting. 
tigase.jaxmpp.core.client.xmpp.modules Support for XMPP Modules. 
tigase.jaxmpp.core.client.xmpp.modules.auth Support for SASL and non-SASL authentication . 
tigase.jaxmpp.core.client.xmpp.modules.chat Support for sending messages and trace converstation. 
tigase.jaxmpp.core.client.xmpp.modules.disco Support for XEP-0030: Service Discovery
tigase.jaxmpp.core.client.xmpp.modules.jingle Support for JINGLE. 
tigase.jaxmpp.core.client.xmpp.modules.muc Support for XEP-0045: Multi-User Chat
tigase.jaxmpp.core.client.xmpp.modules.presence Support for presence. 
tigase.jaxmpp.core.client.xmpp.modules.pubsub Support for XEP-0060: Publish-Subscribe
tigase.jaxmpp.core.client.xmpp.modules.registration Support for XEP-0077: In-Band Registration
tigase.jaxmpp.core.client.xmpp.modules.roster Support for roster management. 
 

Uses of EventType in tigase.jaxmpp.core.client
 

Fields in tigase.jaxmpp.core.client declared as EventType
static EventType Connector.BodyReceived
           
static EventType JaxmppCore.Connected
           
static EventType Connector.Connected
          Event fires after creates XMPP Stream
static EventType JaxmppCore.Disconnected
           
static EventType Connector.EncryptionEstablished
          Event fires after encrypted connection is established.
static EventType Connector.Error
          Event fires on XMPP Stream error.
static EventType Connector.StanzaReceived
          Event fires after creates XMPP Stream.
static EventType Connector.StanzaSending
           
static EventType Connector.StateChanged
          Event fires after connection state is changed.
static EventType Connector.StreamTerminated
          Event fires after XMPP Stream is terminated.
 

Methods in tigase.jaxmpp.core.client with parameters of type EventType
 void JaxmppCore.addListener(EventType eventType, Listener<?> listener)
           
 void MultiJaxmpp.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void Connector.addListener(EventType eventType, Listener<? extends Connector.ConnectorEvent> listener)
          Adds a listener bound by the given event type.
 void MultiJaxmpp.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void JaxmppCore.removeListener(EventType eventType, Listener<? extends BaseEvent> connectorListener)
           
 void Connector.removeListener(EventType eventType, Listener<Connector.ConnectorEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client with parameters of type EventType
Connector.ConnectorEvent(EventType type, SessionObject sessionObject)
           
JaxmppCore.JaxmppEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.connector
 

Methods in tigase.jaxmpp.core.client.connector with parameters of type EventType
 void ConnectorWrapper.addListener(EventType eventType, Listener<? extends Connector.ConnectorEvent> listener)
           
 void AbstractBoshConnector.addListener(EventType eventType, Listener<? extends Connector.ConnectorEvent> listener)
           
 void ConnectorWrapper.removeListener(EventType eventType, Listener<Connector.ConnectorEvent> listener)
           
 void AbstractBoshConnector.removeListener(EventType eventType, Listener<Connector.ConnectorEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client.connector with parameters of type EventType
AbstractBoshConnector.BoshConnectorEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.observer
 

Methods in tigase.jaxmpp.core.client.observer that return EventType
 EventType BaseEvent.getType()
          Returns the type of event.
 

Methods in tigase.jaxmpp.core.client.observer with parameters of type EventType
 void Observable.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void DefaultObservable.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void Observable.fireEvent(EventType eventType, BaseEvent event)
          Fires an event.
 void DefaultObservable.fireEvent(EventType eventType, BaseEvent event)
          Fires an event.
 void Observable.fireEvent(EventType eventType, SessionObject sessionObject)
          Fires BaseEvent.
 void DefaultObservable.fireEvent(EventType eventType, SessionObject sessionObject)
          Fires BaseEvent.
 void Observable.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void DefaultObservable.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 

Constructors in tigase.jaxmpp.core.client.observer with parameters of type EventType
BaseEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules
 

Fields in tigase.jaxmpp.core.client.xmpp.modules declared as EventType
static EventType ResourceBinderModule.ResourceBindError
          Event fires on binding error.
static EventType ResourceBinderModule.ResourceBindSuccess
          Event fires on binding success.
static EventType SessionEstablishmentModule.SessionEstablishmentError
           
static EventType SessionEstablishmentModule.SessionEstablishmentSuccess
           
static EventType StreamFeaturesModule.StreamFeaturesReceived
          Event fires when stream features are received.
 

Methods in tigase.jaxmpp.core.client.xmpp.modules with parameters of type EventType
 void AbstractStanzaModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void AbstractIQModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void StreamFeaturesModule.addListener(EventType eventType, Listener<? extends StreamFeaturesModule.StreamFeaturesReceivedEvent> listener)
           
 void ResourceBinderModule.addListener(EventType eventType, Listener<ResourceBinderModule.ResourceBindEvent> listener)
           
 void SessionEstablishmentModule.addListener(EventType eventType, Listener<SessionEstablishmentModule.SessionEstablishmentEvent> listener)
           
 void AbstractStanzaModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void AbstractIQModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void StreamFeaturesModule.removeListener(EventType eventType, Listener<? extends StreamFeaturesModule.StreamFeaturesReceivedEvent> listener)
           
 void ResourceBinderModule.removeListener(EventType eventType, Listener<ResourceBinderModule.ResourceBindEvent> listener)
           
 void SessionEstablishmentModule.removeListener(EventType eventType, Listener<SessionEstablishmentModule.SessionEstablishmentEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules with parameters of type EventType
ResourceBinderModule.ResourceBindEvent(EventType type, SessionObject sessionObject)
           
SessionEstablishmentModule.SessionEstablishmentEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.auth
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.auth declared as EventType
static EventType AuthModule.AuthFailed
           
static EventType AuthModule.AuthStart
           
static EventType AuthModule.AuthSuccess
           
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.auth with parameters of type EventType
 void SaslModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 void AuthModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 void SaslModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 void AuthModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.auth with parameters of type EventType
AuthModule.AuthEvent(EventType type, SessionObject sessionObject)
           
NonSaslAuthModule.NonSaslAuthEvent(EventType type, SessionObject sessionObject)
           
SaslModule.SaslEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.chat
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.chat declared as EventType
static EventType MessageModule.ChatClosed
           
static EventType MessageModule.ChatCreated
           
static EventType MessageModule.ChatUpdated
           
static EventType MessageModule.MessageReceived
           
static EventType Chat.MessageReceived
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.chat with parameters of type EventType
MessageModule.AbstractMessageEvent(EventType type, SessionObject sessionObject)
           
MessageModule.MessageEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.disco
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.disco declared as EventType
static EventType DiscoInfoModule.InfoRequested
           
static EventType DiscoItemsModule.ItemsRequested
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.disco with parameters of type EventType
DiscoInfoModule.DiscoInfoEvent(EventType type, SessionObject sessionObject)
           
DiscoItemsModule.DiscoItemEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.jingle
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.jingle declared as EventType
static EventType JingleModule.JingleSessionAccept
           
static EventType JingleModule.JingleSessionInfo
           
static EventType JingleModule.JingleSessionInitiation
           
static EventType JingleModule.JingleSessionTerminate
           
static EventType JingleModule.JingleTransportInfo
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.jingle with parameters of type EventType
JingleModule.JingleSessionEvent(EventType type, SessionObject sessionObject, JID sender, String sid)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.muc
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.muc declared as EventType
static EventType MucModule.JoinRequested
           
static EventType MucModule.MessageError
           
static EventType MucModule.MucMessageReceived
           
static EventType MucModule.NewRoomCreated
           
static EventType MucModule.OccupantChangedNick
           
static EventType MucModule.OccupantChangedPresence
           
static EventType MucModule.OccupantComes
           
static EventType MucModule.OccupantLeaved
           
static EventType MucModule.PresenceError
           
static EventType MucModule.RoomClosed
          Local instance of Chat Room was closed because of, for example, presence error.
static EventType MucModule.StateChange
           
static EventType MucModule.YouJoined
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.muc with parameters of type EventType
MucModule.MucEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.presence
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.presence declared as EventType
static EventType PresenceModule.BeforeInitialPresence
          Event fired before initial presence is sent.
static EventType PresenceModule.BeforePresenceSend
          Event fired before each presence sent by client.
static EventType PresenceModule.ContactAvailable
          Event fired when contact (understood as bare JID) becomes available.
static EventType PresenceModule.ContactChangedPresence
          Event fired when contact changed his presence.
static EventType PresenceModule.ContactUnavailable
          Event fired when contact (understood as bare JID) goes offline.
static EventType PresenceModule.ContactUnsubscribed
          Event fired when contact is unsubscribed.
static EventType PresenceModule.SubscribeRequest
          Event fired when subscription request is received.
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.presence with parameters of type EventType
PresenceModule.PresenceEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.pubsub
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.pubsub declared as EventType
static EventType PubSubModule.NotificationReceived
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.pubsub with parameters of type EventType
PubSubModule.PubSubEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.registration
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.registration declared as EventType
static EventType InBandRegistrationModule.NotSupportedError
           
static EventType InBandRegistrationModule.ReceivedError
           
static EventType InBandRegistrationModule.ReceivedRequestedFields
           
static EventType InBandRegistrationModule.ReceivedTimeout
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.registration with parameters of type EventType
InBandRegistrationModule.RegistrationEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.roster
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.roster declared as EventType
static EventType RosterModule.ItemAdded
           
static EventType RosterModule.ItemRemoved
           
static EventType RosterModule.ItemUpdated
           
 



Copyright © 2006-2013 Tigase. All Rights Reserved.