本文整理匯總了Java中org.openymsg.network.Status.BRB屬性的典型用法代碼示例。如果您正苦於以下問題:Java Status.BRB屬性的具體用法?Java Status.BRB怎麽用?Java Status.BRB使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.openymsg.network.Status
的用法示例。
在下文中一共展示了Status.BRB屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: convertXMPPStatusToYahoo
/**
* 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;
}
}
示例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;
}
}
示例3: 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;
}
}