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


Java Status.IDLE屬性代碼示例

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


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

示例1: convertYahooStatusToXMPP

/**
 * 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,代碼行數:58,代碼來源:YahooTransport.java

示例2: convertYahooStatusToXMPP

/**
 * 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,代碼行數:58,代碼來源:YahooTransport.java


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