Back to project page smsgateway-android.
The source code is released under:
GNU General Public License
If you think the Android project smsgateway-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* */*from ww w . j av a 2 s .c om*/ * ((e)) emite: A pure gwt (Google Web Toolkit) xmpp (jabber) library * * (c) 2008-2009 The emite development team (see CREDITS for details) * This file is part of emite. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package com.calclab.emite.im.client.presence; import com.calclab.emite.core.client.xmpp.stanzas.Presence; import com.calclab.suco.client.events.Listener; /** * Handles the user's presence state. Provides event to know when it changes. * * Its responsable of send the initial presence after session login. * * @see http://xmpp.org/rfcs/rfc3921.html#presence */ public interface PresenceManager { /** * Get the current user's presence * * @return */ Presence getOwnPresence(); /** * Add a litener to the own's-presence-changed event * * @param listener */ void onOwnPresenceChanged(Listener<Presence> listener); /** * Change the current user presence */ void setOwnPresence(Presence presence); }