當前位置: 首頁>>代碼示例>>Java>>正文


Java Status類代碼示例

本文整理匯總了Java中org.openymsg.network.Status的典型用法代碼示例。如果您正苦於以下問題:Java Status類的具體用法?Java Status怎麽用?Java Status使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Status類屬於org.openymsg.network包,在下文中一共展示了Status類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: convertXMPPStatusToYahoo

import org.openymsg.network.Status; //導入依賴的package包/類
/**
 * Converts an XMPP status to an Yahoo status.
 *
 * @param xmppStatus Jabber presence type.
 * @return Yahoo status identifier.
 */
public Status convertXMPPStatusToYahoo(PresenceType xmppStatus) {
    if (xmppStatus == PresenceType.available) {
        return Status.AVAILABLE;
    }
    else if (xmppStatus == PresenceType.away) {
        return Status.BRB;
    }
    else if (xmppStatus == PresenceType.xa) {
        return Status.STEPPEDOUT;
    }
    else if (xmppStatus == PresenceType.dnd) {
        return Status.BUSY;
    }
    else if (xmppStatus == PresenceType.chat) {
        return Status.AVAILABLE;
    }
    else if (xmppStatus == PresenceType.unavailable) {
        return Status.OFFLINE;
    }
    else {
        return Status.AVAILABLE;
    }
}
 
開發者ID:igniterealtime,項目名稱:Openfire,代碼行數:30,代碼來源:YahooTransport.java

示例2: convertYahooStatusToXMPP

import org.openymsg.network.Status; //導入依賴的package包/類
/**
 * Converts a Yahoo status to an XMPP status.
 *
 * @param yahooStatus Yahoo StatusConstants constant.
 * @return XMPP presence type matching the Yahoo status.
 */
public PresenceType convertYahooStatusToXMPP(Status yahooStatus, String customAvailable) {
    if ("0".equals(customAvailable)) {
        return PresenceType.available;
    } else if ("1".equals(customAvailable)) {
        return PresenceType.dnd;
    } 
    else if (yahooStatus == Status.AVAILABLE) {
        // We're good, leave the type as blank for available.
        return PresenceType.available;
    }
    else if (yahooStatus == Status.BRB) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.BUSY) {
        return PresenceType.dnd;
    }
    else if (yahooStatus == Status.IDLE) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.OFFLINE) {
        return PresenceType.unavailable;
    }
    else if (yahooStatus == Status.NOTATDESK) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.NOTINOFFICE) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.ONPHONE) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.ONVACATION) {
        return PresenceType.xa;
    }
    else if (yahooStatus == Status.OUTTOLUNCH) {
        return PresenceType.xa;
    }
    else if (yahooStatus == Status.STEPPEDOUT) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.INVISIBLE) {
        return PresenceType.available;
    }
    else if (yahooStatus == Status.CUSTOM) {
        return PresenceType.available;
    }
    else {
        // Not something we handle, we're going to ignore it.
        Log.warn("Yahoo: Unrecognized status "+yahooStatus+" received.");
        return PresenceType.unknown;
    }
}
 
開發者ID:igniterealtime,項目名稱:Openfire,代碼行數:59,代碼來源:YahooTransport.java

示例3: convertYahooStatusToXMPP

import org.openymsg.network.Status; //導入依賴的package包/類
/**
 * Converts a Yahoo status to an XMPP status.
 *
 * @param yahooStatus Yahoo StatusConstants constant.
 * @return XMPP presence type matching the Yahoo status.
 */
public PresenceType convertYahooStatusToXMPP(Status yahooStatus, String customAvailable) {
	if ("0".equals(customAvailable)) {
        return PresenceType.available;
	} else if ("1".equals(customAvailable)) {
		return PresenceType.dnd;
	} 
	else if (yahooStatus == Status.AVAILABLE) {
        // We're good, leave the type as blank for available.
        return PresenceType.available;
    }
    else if (yahooStatus == Status.BRB) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.BUSY) {
        return PresenceType.dnd;
    }
    else if (yahooStatus == Status.IDLE) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.OFFLINE) {
        return PresenceType.unavailable;
    }
    else if (yahooStatus == Status.NOTATDESK) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.NOTINOFFICE) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.ONPHONE) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.ONVACATION) {
        return PresenceType.xa;
    }
    else if (yahooStatus == Status.OUTTOLUNCH) {
        return PresenceType.xa;
    }
    else if (yahooStatus == Status.STEPPEDOUT) {
        return PresenceType.away;
    }
    else if (yahooStatus == Status.INVISIBLE) {
        return PresenceType.available;
    }
    else if (yahooStatus == Status.CUSTOM) {
        return PresenceType.available;
    }
    else {
        // Not something we handle, we're going to ignore it.
        Log.warn("Yahoo: Unrecognized status "+yahooStatus+" received.");
        return PresenceType.unknown;
    }
}
 
開發者ID:coodeer,項目名稱:g3server,代碼行數:59,代碼來源:YahooTransport.java


注:本文中的org.openymsg.network.Status類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。