Examples of XValue


Examples of com.sissi.protocol.iq.data.XValue

   * @param searchContext
   */
  public SearchGetMultiProcessor(List<Field<?>> reports, SearchContext searchContext) {
    super();
    this.searchContext = searchContext;
    this.data = new XData().setType(XDataType.RESULT.toString()).add(new XField().setType(XFieldType.HIDDEN.toString()).setVar(XDataType.FORM_TYPE.toString()).add(new XValue(Search.XMLNS))).add(Field.class.cast(new XReported().add(reports)));
  }
View Full Code Here

Examples of com.sissi.protocol.iq.data.XValue

    super(config, jidBuilder, limit, filters, mapping);
  }

  @Override
  protected Fields build(DBObject each, Fields target) {
    return target.add(Field.class.cast(new XItem().add(new XField().setVar(Dictionary.FIELD_JID).add(new XValue(super.jidBuilder.build(MongoUtils.asString(each, Dictionary.FIELD_USERNAME), null).asStringWithBare()))).add(new XField().setVar(VCardContext.FIELD_NICK.toLowerCase()).add(new XValue(MongoUtils.asString(each, VCardContext.FIELD_NICK))))));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.