当前位置: 首页>>代码示例>>Java>>正文


Java MUCAdmin类代码示例

本文整理汇总了Java中org.jivesoftware.smackx.packet.MUCAdmin的典型用法代码示例。如果您正苦于以下问题:Java MUCAdmin类的具体用法?Java MUCAdmin怎么用?Java MUCAdmin使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MUCAdmin类属于org.jivesoftware.smackx.packet包,在下文中一共展示了MUCAdmin类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: parseIQ

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
public IQ parseIQ(XmlPullParser parser) throws Exception {
    MUCAdmin mucAdmin = new MUCAdmin();
    boolean done = false;
    while (!done) {
        int eventType = parser.next();
        if (eventType == XmlPullParser.START_TAG) {
            if (parser.getName().equals("item")) {
                mucAdmin.addItem(parseItem(parser));
            }
        }
        else if (eventType == XmlPullParser.END_TAG) {
            if (parser.getName().equals("query")) {
                done = true;
            }
        }
    }

    return mucAdmin;
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:20,代码来源:MUCAdminProvider.java

示例2: parseItem

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
private MUCAdmin.Item parseItem(XmlPullParser parser) throws Exception {
    boolean done = false;
    MUCAdmin.Item item =
        new MUCAdmin.Item(
            parser.getAttributeValue("", "affiliation"),
            parser.getAttributeValue("", "role"));
    item.setNick(parser.getAttributeValue("", "nick"));
    item.setJid(parser.getAttributeValue("", "jid"));
    while (!done) {
        int eventType = parser.next();
        if (eventType == XmlPullParser.START_TAG) {
            if (parser.getName().equals("actor")) {
                item.setActor(parser.getAttributeValue("", "jid"));
            }
            if (parser.getName().equals("reason")) {
                item.setReason(parser.nextText());
            }
        }
        else if (eventType == XmlPullParser.END_TAG) {
            if (parser.getName().equals("item")) {
                done = true;
            }
        }
    }
    return item;
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:27,代码来源:MUCAdminProvider.java

示例3: parseIQ

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
public IQ parseIQ(XmlPullParser parser) throws Exception {
	MUCAdmin mucAdmin = new MUCAdmin();
	boolean done = false;
	while (!done) {
		int eventType = parser.next();
		if (eventType == XmlPullParser.START_TAG) {
			if (parser.getName().equals("item")) {
				mucAdmin.addItem(parseItem(parser));
			}
		} else if (eventType == XmlPullParser.END_TAG) {
			if (parser.getName().equals("query")) {
				done = true;
			}
		}
	}

	return mucAdmin;
}
 
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:19,代码来源:MUCAdminProvider.java

示例4: parseItem

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
private MUCAdmin.Item parseItem(XmlPullParser parser) throws Exception {
	boolean done = false;
	MUCAdmin.Item item = new MUCAdmin.Item(parser.getAttributeValue("",
			"affiliation"), parser.getAttributeValue("", "role"));
	item.setNick(parser.getAttributeValue("", "nick"));
	item.setJid(parser.getAttributeValue("", "jid"));
	while (!done) {
		int eventType = parser.next();
		if (eventType == XmlPullParser.START_TAG) {
			if (parser.getName().equals("actor")) {
				item.setActor(parser.getAttributeValue("", "jid"));
			}
			if (parser.getName().equals("reason")) {
				item.setReason(parser.nextText());
			}
		} else if (eventType == XmlPullParser.END_TAG) {
			if (parser.getName().equals("item")) {
				done = true;
			}
		}
	}
	return item;
}
 
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:24,代码来源:MUCAdminProvider.java

示例5: Occupant

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
Occupant(MUCAdmin.Item item) {
    super();
    this.jid = item.getJid();
    this.affiliation = item.getAffiliation();
    this.role = item.getRole();
    this.nick = item.getNick();
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:8,代码来源:Occupant.java

示例6: changeAffiliationByAdmin

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
private void changeAffiliationByAdmin(String jid, String affiliation, String reason)
        throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.SET);
    // Set the new affiliation.
    MUCAdmin.Item item = new MUCAdmin.Item(affiliation, null);
    item.setJid(jid);
    item.setReason(reason);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the change request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:29,代码来源:MultiUserChat.java

示例7: changeRole

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
private void changeRole(String nickname, String role, String reason) throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.SET);
    // Set the new role.
    MUCAdmin.Item item = new MUCAdmin.Item(null, role);
    item.setNick(nickname);
    item.setReason(reason);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the change request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:28,代码来源:MultiUserChat.java

示例8: getAffiliatesByAdmin

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
/**
 * Returns a collection of <code>Affiliate</code> that have the specified room affiliation
 * sending a request in the admin namespace.
 *
 * @param affiliation the affiliation of the users in the room.
 * @return a collection of <code>Affiliate</code> that have the specified room affiliation.
 * @throws XMPPException if an error occured while performing the request to the server or you
 *         don't have enough privileges to get this information.
 */
private Collection<Affiliate> getAffiliatesByAdmin(String affiliation) throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);
    // Set the specified affiliation. This may request the list of owners/admins/members/outcasts.
    MUCAdmin.Item item = new MUCAdmin.Item(affiliation, null);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    MUCAdmin answer = (MUCAdmin) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
    // Get the list of affiliates from the server's answer
    List<Affiliate> affiliates = new ArrayList<Affiliate>();
    for (Iterator it = answer.getItems(); it.hasNext();) {
        affiliates.add(new Affiliate((MUCAdmin.Item) it.next()));
    }
    return affiliates;
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:41,代码来源:MultiUserChat.java

示例9: getOccupants

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
/**
 * Returns a collection of <code>Occupant</code> that have the specified room role.
 *
 * @param role the role of the occupant in the room.
 * @return a collection of <code>Occupant</code> that have the specified room role.
 * @throws XMPPException if an error occured while performing the request to the server or you
 *         don't have enough privileges to get this information.
 */
private Collection<Occupant> getOccupants(String role) throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);
    // Set the specified role. This may request the list of moderators/participants.
    MUCAdmin.Item item = new MUCAdmin.Item(null, role);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    MUCAdmin answer = (MUCAdmin) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
    // Get the list of participants from the server's answer
    List<Occupant> participants = new ArrayList<Occupant>();
    for (Iterator it = answer.getItems(); it.hasNext();) {
        participants.add(new Occupant((MUCAdmin.Item) it.next()));
    }
    return participants;
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:40,代码来源:MultiUserChat.java

示例10: Affiliate

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
Affiliate(MUCAdmin.Item item) {
    super();
    this.jid = item.getJid();
    this.affiliation = item.getAffiliation();
    this.role = item.getRole();
    this.nick = item.getNick();
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:8,代码来源:Affiliate.java

示例11: changeAffiliationByAdmin

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
/**
 * Tries to change the affiliation with an 'muc#admin' namespace
 *
 * @param jid
 * @param affiliation
 * @param reason the reason for the affiliation change (optional)
 * @throws XMPPException
 */
private void changeAffiliationByAdmin(String jid, String affiliation, String reason)
        throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.SET);
    // Set the new affiliation.
    MUCAdmin.Item item = new MUCAdmin.Item(affiliation, null);
    item.setJid(jid);
    if(reason != null)
        item.setReason(reason);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the change request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    IQ answer = (IQ) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
}
 
开发者ID:CJC-ivotten,项目名称:androidPN-client.,代码行数:38,代码来源:MultiUserChat.java

示例12: getAffiliatesByAdmin

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
/**
 * Returns a collection of <code>Affiliate</code> that have the specified room affiliation
 * sending a request in the admin namespace.
 *
 * @param affiliation the affiliation of the users in the room.
 * @return a collection of <code>Affiliate</code> that have the specified room affiliation.
 * @throws XMPPException if an error occured while performing the request to the server or you
 *         don't have enough privileges to get this information.
 */
private Collection<Affiliate> getAffiliatesByAdmin(String affiliation) throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);
    // Set the specified affiliation. This may request the list of owners/admins/members/outcasts.
    MUCAdmin.Item item = new MUCAdmin.Item(affiliation, null);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    MUCAdmin answer = (MUCAdmin) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
    // Get the list of affiliates from the server's answer
    List<Affiliate> affiliates = new ArrayList<Affiliate>();
    for (Iterator<MUCAdmin.Item> it = answer.getItems(); it.hasNext();) {
        affiliates.add(new Affiliate(it.next()));
    }
    return affiliates;
}
 
开发者ID:CJC-ivotten,项目名称:androidPN-client.,代码行数:41,代码来源:MultiUserChat.java

示例13: getOccupants

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
/**
 * Returns a collection of <code>Occupant</code> that have the specified room role.
 *
 * @param role the role of the occupant in the room.
 * @return a collection of <code>Occupant</code> that have the specified room role.
 * @throws XMPPException if an error occured while performing the request to the server or you
 *         don't have enough privileges to get this information.
 */
private Collection<Occupant> getOccupants(String role) throws XMPPException {
    MUCAdmin iq = new MUCAdmin();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);
    // Set the specified role. This may request the list of moderators/participants.
    MUCAdmin.Item item = new MUCAdmin.Item(null, role);
    iq.addItem(item);

    // Wait for a response packet back from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the request to the server.
    connection.sendPacket(iq);
    // Wait up to a certain number of seconds for a reply.
    MUCAdmin answer = (MUCAdmin) response.nextResult(SmackConfiguration.getPacketReplyTimeout());
    // Stop queuing results
    response.cancel();

    if (answer == null) {
        throw new XMPPException("No response from server.");
    }
    else if (answer.getError() != null) {
        throw new XMPPException(answer.getError());
    }
    // Get the list of participants from the server's answer
    List<Occupant> participants = new ArrayList<Occupant>();
    for (Iterator<MUCAdmin.Item> it = answer.getItems(); it.hasNext();) {
        participants.add(new Occupant(it.next()));
    }
    return participants;
}
 
开发者ID:CJC-ivotten,项目名称:androidPN-client.,代码行数:40,代码来源:MultiUserChat.java

示例14: Occupant

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
Occupant(MUCAdmin.Item item) {
	super();
	this.jid = item.getJid();
	this.affiliation = item.getAffiliation();
	this.role = item.getRole();
	this.nick = item.getNick();
}
 
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:8,代码来源:Occupant.java

示例15: changeAffiliationByAdmin

import org.jivesoftware.smackx.packet.MUCAdmin; //导入依赖的package包/类
private void changeAffiliationByAdmin(String jid, String affiliation,
		String reason) throws XMPPException {
	MUCAdmin iq = new MUCAdmin();
	iq.setTo(room);
	iq.setType(IQ.Type.SET);
	// Set the new affiliation.
	MUCAdmin.Item item = new MUCAdmin.Item(affiliation, null);
	item.setJid(jid);
	if (reason != null)
		item.setReason(reason);
	iq.addItem(item);

	// Wait for a response packet back from the server.
	PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
	PacketCollector response = connection
			.createPacketCollector(responseFilter);
	// Send the change request to the server.
	connection.sendPacket(iq);
	// Wait up to a certain number of seconds for a reply.
	IQ answer = (IQ) response.nextResult(SmackConfiguration
			.getPacketReplyTimeout());
	// Stop queuing results
	response.cancel();

	if (answer == null) {
		throw new XMPPException("No response from server.");
	} else if (answer.getError() != null) {
		throw new XMPPException(answer.getError());
	}
}
 
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:31,代码来源:MultiUserChat.java


注:本文中的org.jivesoftware.smackx.packet.MUCAdmin类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。