本文整理汇总了Java中org.jivesoftware.smack.XMPPException.getXMPPError方法的典型用法代码示例。如果您正苦于以下问题:Java XMPPException.getXMPPError方法的具体用法?Java XMPPException.getXMPPError怎么用?Java XMPPException.getXMPPError使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jivesoftware.smack.XMPPException
的用法示例。
在下文中一共展示了XMPPException.getXMPPError方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: formatXMPPError
import org.jivesoftware.smack.XMPPException; //导入方法依赖的package包/类
private static String formatXMPPError(XMPPException e) {
final XMPPError error = e.getXMPPError();
if (error == null) {
return Resources.getString("Server.server_error", e.getMessage(), "", ""); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
else {
return Resources.getString("Server.server_error", e //$NON-NLS-1$
.getXMPPError().getMessage(), e.getXMPPError().getCondition(), e
.getXMPPError().getCode());
}
}
示例2: join
import org.jivesoftware.smack.XMPPException; //导入方法依赖的package包/类
public MultiUserChat join(JabberClient client, JabberPlayer me) throws XMPPException {
MultiUserChat chat = new MultiUserChat(client.getConnection(), getJID());
chat.join(StringUtils.parseName(me.getJid()));
if (!chat.isJoined()) {
return null;
}
try {
// This is necessary to create the room if it doesn't already exist
// Configure the options we needs explicitly, don't depend on the server supplied defaults
final Form configForm = chat.getConfigurationForm().createAnswerForm();
configForm.setAnswer(JABBER_MEMBERSONLY, isStartLocked());
configForm.setAnswer(JABBER_ALLOW_INVITES, false);
configForm.setAnswer(JABBER_CHANGE_SUBJECT, false);
configForm.setAnswer(JABBER_MODERATED, false);
configForm.setAnswer(JABBER_PASSWORD_PROTECTED, false);
configForm.setAnswer(JABBER_PERSISTENT, false);
configForm.setAnswer(JABBER_PUBLIC_ROOM, true);
chat.sendConfigurationForm(configForm);
ownedByMe = true;
owners.clear();
addOwner(jid);
}
catch (XMPPException e) {
// 403 code means the room already exists and user is not an owner
if (e.getXMPPError() != null && e.getXMPPError().getCode() != 403) {
throw e;
}
}
chat.addMessageListener(client);
return chat;
}
示例3: setRoom
import org.jivesoftware.smack.XMPPException; //导入方法依赖的package包/类
public void setRoom(Room r) {
JabberRoom newRoom = null;
try {
if (r instanceof JabberRoom) {
newRoom = (JabberRoom) r;
}
else {
newRoom = roomMgr.getRoomByName(this, r.getName());
}
if (!newRoom.equals(getRoom())) {
final String failedToJoinMessage = newRoom.canJoin(me);
if (failedToJoinMessage != null) {
fireStatus(Resources.getString("Chat.failed_to_join", newRoom.getName(), failedToJoinMessage)); //$NON-NLS-1$
return;
}
leaveCurrentRoom();
currentChat = newRoom.join(this, (JabberPlayer) getUserInfo());
if (newRoom.isOwnedByMe()) {
currentChat.addParticipantStatusListener(userListener);
}
fireStatus(Resources.getString("Chat.joined_room", newRoom.getName())); //$NON-NLS-1$
if (!newRoom.isOwnedByMe() && ! isDefaultRoom(newRoom)) {
new SynchAction(newRoom.getOwningPlayer(), this).actionPerformed(null);
GameModule.getGameModule().warn(Resources.getString("Chat.synchronize_complete")); //$NON-NLS-1$
}
else {
SynchAction.clearSynchRoom();
}
currentChat.addUserStatusListener(kickListener);
monitor.sendRoomChanged();
monitor.sendStatus(me, newRoom);
}
}
// FIXME: review error message
catch (XMPPException e) {
reportXMPPException(e);
String mess = null;
if (e.getXMPPError() != null) {
final XMPPError error = e.getXMPPError();
if (error.getCode() == 407) {
mess = Resources.getString("Chat.not_a_member"); //$NON-NLS-1$
}
else {
mess = e.getXMPPError().getMessage();
if (mess == null) {
mess = e.getXMPPError().getCondition();
}
}
}
else {
mess = e.getMessage();
}
fireStatus(Resources.getString("Chat.failed_to_join", newRoom.getName(), mess)); //$NON-NLS-1$
}
}