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


Java MUCOwner.getPacketID方法代码示例

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


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

示例1: getConfigurationForm

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Returns the room's configuration form that the room's owner can use or <tt>null</tt> if
 * no configuration is possible. The configuration form allows to set the room's language,
 * enable logging, specify room's type, etc..
 *
 * @return the Form that contains the fields to complete together with the instrucions or
 * <tt>null</tt> if no configuration is possible.
 * @throws XMPPException if an error occurs asking the configuration form for the room.
 */
public Form getConfigurationForm() throws XMPPException {
    MUCOwner iq = new MUCOwner();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);

    // Filter packets looking for an answer from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Request the configuration form 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());
    }
    return Form.getFormFrom(answer);
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:33,代码来源:MultiUserChat.java

示例2: sendConfigurationForm

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Sends the completed configuration form to the server. The room will be configured
 * with the new settings defined in the form. If the form is empty then the server
 * will create an instant room (will use default configuration).
 *
 * @param form the form with the new settings.
 * @throws XMPPException if an error occurs setting the new rooms' configuration.
 */
public void sendConfigurationForm(Form form) throws XMPPException {
    MUCOwner iq = new MUCOwner();
    iq.setTo(room);
    iq.setType(IQ.Type.SET);
    iq.addExtension(form.getDataFormToSend());

    // Filter packets looking for an answer from the server.
    PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
    PacketCollector response = connection.createPacketCollector(responseFilter);
    // Send the completed configuration form 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,代码行数:32,代码来源:MultiUserChat.java

示例3: changeAffiliationByOwner

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
private void changeAffiliationByOwner(String jid, String affiliation) throws XMPPException {
    MUCOwner iq = new MUCOwner();
    iq.setTo(room);
    iq.setType(IQ.Type.SET);
    // Set the new affiliation.
    MUCOwner.Item item = new MUCOwner.Item(affiliation);
    item.setJid(jid);
    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,代码行数:27,代码来源:MultiUserChat.java

示例4: getConfigurationForm

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Returns the room's configuration form that the room's owner can use or
 * <tt>null</tt> if no configuration is possible. The configuration form
 * allows to set the room's language, enable logging, specify room's type,
 * etc..
 * 
 * @return the Form that contains the fields to complete together with the
 *         instrucions or <tt>null</tt> if no configuration is possible.
 * @throws XMPPException
 *             if an error occurs asking the configuration form for the
 *             room.
 */
public Form getConfigurationForm() throws XMPPException {
	MUCOwner iq = new MUCOwner();
	iq.setTo(room);
	iq.setType(IQ.Type.GET);

	// Filter packets looking for an answer from the server.
	PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
	PacketCollector response = connection
			.createPacketCollector(responseFilter);
	// Request the configuration form 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());
	}
	return Form.getFormFrom(answer);
}
 
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:37,代码来源:MultiUserChat.java

示例5: sendConfigurationForm

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Sends the completed configuration form to the server. The room will be
 * configured with the new settings defined in the form. If the form is
 * empty then the server will create an instant room (will use default
 * configuration).
 * 
 * @param form
 *            the form with the new settings.
 * @throws XMPPException
 *             if an error occurs setting the new rooms' configuration.
 */
public void sendConfigurationForm(Form form) throws XMPPException {
	MUCOwner iq = new MUCOwner();
	iq.setTo(room);
	iq.setType(IQ.Type.SET);
	iq.addExtension(form.getDataFormToSend());

	// Filter packets looking for an answer from the server.
	PacketFilter responseFilter = new PacketIDFilter(iq.getPacketID());
	PacketCollector response = connection
			.createPacketCollector(responseFilter);
	// Send the completed configuration form 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,代码行数:36,代码来源:MultiUserChat.java

示例6: getAffiliatesByOwner

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Returns a collection of <code>Affiliate</code> that have the specified room affiliation
 * sending a request in the owner 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> getAffiliatesByOwner(String affiliation) throws XMPPException {
    MUCOwner iq = new MUCOwner();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);
    // Set the specified affiliation. This may request the list of owners/admins/members/outcasts.
    MUCOwner.Item item = new MUCOwner.Item(affiliation);
    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.
    MUCOwner answer = (MUCOwner) 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((MUCOwner.Item) it.next()));
    }
    return affiliates;
}
 
开发者ID:ice-coffee,项目名称:EIM,代码行数:41,代码来源:MultiUserChat.java

示例7: getAffiliatesByOwner

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Returns a collection of <code>Affiliate</code> that have the specified room affiliation
 * sending a request in the owner 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> getAffiliatesByOwner(String affiliation) throws XMPPException {
    MUCOwner iq = new MUCOwner();
    iq.setTo(room);
    iq.setType(IQ.Type.GET);
    // Set the specified affiliation. This may request the list of owners/admins/members/outcasts.
    MUCOwner.Item item = new MUCOwner.Item(affiliation);
    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.
    MUCOwner answer = (MUCOwner) 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<MUCOwner.Item> it = answer.getItems(); it.hasNext();) {
        affiliates.add(new Affiliate(it.next()));
    }
    return affiliates;
}
 
开发者ID:CJC-ivotten,项目名称:androidPN-client.,代码行数:41,代码来源:MultiUserChat.java

示例8: changeAffiliationByOwner

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
private void changeAffiliationByOwner(String jid, String affiliation)
		throws XMPPException {
	MUCOwner iq = new MUCOwner();
	iq.setTo(room);
	iq.setType(IQ.Type.SET);
	// Set the new affiliation.
	MUCOwner.Item item = new MUCOwner.Item(affiliation);
	item.setJid(jid);
	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,代码行数:29,代码来源:MultiUserChat.java

示例9: getAffiliatesByOwner

import org.jivesoftware.smackx.packet.MUCOwner; //导入方法依赖的package包/类
/**
 * Returns a collection of <code>Affiliate</code> that have the specified
 * room affiliation sending a request in the owner 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> getAffiliatesByOwner(String affiliation)
		throws XMPPException {
	MUCOwner iq = new MUCOwner();
	iq.setTo(room);
	iq.setType(IQ.Type.GET);
	// Set the specified affiliation. This may request the list of
	// owners/admins/members/outcasts.
	MUCOwner.Item item = new MUCOwner.Item(affiliation);
	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.
	MUCOwner answer = (MUCOwner) 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((MUCOwner.Item) it.next()));
	}
	return affiliates;
}
 
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:48,代码来源:MultiUserChat.java


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