本文整理汇总了Java中org.jivesoftware.smackx.workgroup.settings.GenericSettings类的典型用法代码示例。如果您正苦于以下问题:Java GenericSettings类的具体用法?Java GenericSettings怎么用?Java GenericSettings使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GenericSettings类属于org.jivesoftware.smackx.workgroup.settings包,在下文中一共展示了GenericSettings类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getGenericSettings
import org.jivesoftware.smackx.workgroup.settings.GenericSettings; //导入依赖的package包/类
/**
* Returns the generic metadata of the workgroup the agent belongs to.
*
* @param con the Connection to use.
* @param query an optional query object used to tell the server what metadata to retrieve. This can be null.
* @throws XMPPException if an error occurs while sending the request to the server.
* @return the settings for the workgroup.
*/
public GenericSettings getGenericSettings(Connection con, String query) throws XMPPException {
GenericSettings setting = new GenericSettings();
setting.setType(IQ.Type.GET);
setting.setTo(workgroupJID);
PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(setting.getPacketID()));
connection.sendPacket(setting);
GenericSettings response = (GenericSettings)collector.nextResult(SmackConfiguration.getPacketReplyTimeout());
// Cancel the collector.
collector.cancel();
if (response == null) {
throw new XMPPException("No response from server on status set.");
}
if (response.getError() != null) {
throw new XMPPException(response.getError());
}
return response;
}
开发者ID:ice-coffee,项目名称:EIM,代码行数:29,代码来源:AgentSession.java
示例2: getGenericSettings
import org.jivesoftware.smackx.workgroup.settings.GenericSettings; //导入依赖的package包/类
/**
* Returns the generic metadata of the workgroup the agent belongs to.
*
* @param con
* the Connection to use.
* @param query
* an optional query object used to tell the server what metadata
* to retrieve. This can be null.
* @throws XMPPException
* if an error occurs while sending the request to the server.
* @return the settings for the workgroup.
*/
public GenericSettings getGenericSettings(Connection con, String query)
throws XMPPException {
GenericSettings setting = new GenericSettings();
setting.setType(IQ.Type.GET);
setting.setTo(workgroupJID);
PacketCollector collector = connection
.createPacketCollector(new PacketIDFilter(setting.getPacketID()));
connection.sendPacket(setting);
GenericSettings response = (GenericSettings) collector
.nextResult(SmackConfiguration.getPacketReplyTimeout());
// Cancel the collector.
collector.cancel();
if (response == null) {
throw new XMPPException("No response from server on status set.");
}
if (response.getError() != null) {
throw new XMPPException(response.getError());
}
return response;
}
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:36,代码来源:AgentSession.java
示例3: getGenericSettings
import org.jivesoftware.smackx.workgroup.settings.GenericSettings; //导入依赖的package包/类
/**
* Returns the generic metadata of the workgroup the agent belongs to.
*
* @param con the XMPPConnection to use.
* @param query an optional query object used to tell the server what metadata to retrieve. This can be null.
* @return the settings for the workgroup.
* @throws XMPPErrorException if an error occurs while sending the request to the server.
* @throws NoResponseException
* @throws NotConnectedException
*/
public GenericSettings getGenericSettings(XMPPConnection con, String query) throws NoResponseException, XMPPErrorException, NotConnectedException {
GenericSettings setting = new GenericSettings();
setting.setType(IQ.Type.get);
setting.setTo(workgroupJID);
GenericSettings response = (GenericSettings) connection.createPacketCollectorAndSend(
setting).nextResultOrThrow();
return response;
}
开发者ID:TTalkIM,项目名称:Smack,代码行数:20,代码来源:AgentSession.java
注:本文中的org.jivesoftware.smackx.workgroup.settings.GenericSettings类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论