org.jbundle.model.util.Util.addXMLMap()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(162)

本文整理了Java中org.jbundle.model.util.Util.addXMLMap()方法的一些代码示例,展示了Util.addXMLMap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.addXMLMap()方法的具体详情如下:
包路径:org.jbundle.model.util.Util
类名称:Util
方法名:addXMLMap

Util.addXMLMap介绍

暂无

代码示例

代码示例来源:origin: org.jbundle.base.message/org.jbundle.base.message.core

  1. /**
  2. * Get the message header data as a XML String.
  3. * @return
  4. */
  5. public StringBuffer addXML(StringBuffer sbXML)
  6. {
  7. if (sbXML == null)
  8. sbXML = new StringBuffer();
  9. Util.addStartTag(sbXML, BaseMessage.HEADER_TAG).append(DBConstants.RETURN);
  10. Map<String,Object> map = this.getProperties();
  11. Util.addXMLMap(sbXML, map);
  12. Util.addEndTag(sbXML, BaseMessage.HEADER_TAG).append(DBConstants.RETURN);
  13. return sbXML;
  14. }
  15. /**

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

  1. /**
  2. * Get the message header data as a XML String.
  3. * @return
  4. */
  5. public StringBuffer addXML(StringBuffer sbXML)
  6. {
  7. if (sbXML == null)
  8. sbXML = new StringBuffer();
  9. Util.addStartTag(sbXML, BaseMessage.HEADER_TAG).append(DBConstants.RETURN);
  10. Map<String,Object> map = this.getProperties();
  11. Util.addXMLMap(sbXML, map);
  12. Util.addEndTag(sbXML, BaseMessage.HEADER_TAG).append(DBConstants.RETURN);
  13. return sbXML;
  14. }
  15. /**

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

  1. /**
  2. * Convert the external form to the internal message form.
  3. * You must override this method.
  4. * @param externalMessage The received message to be converted to internal form.
  5. * @return The internal message.
  6. */
  7. public int convertExternalToInternal(Object recordOwner)
  8. {
  9. String strMessage = (String)this.getRawData();
  10. strMessage = this.stripHtmlTags((String)strMessage);
  11. Map<String,Object> map = this.getEMailParams(strMessage);
  12. this.moveHeaderParams(map, ((TrxMessageHeader)this.getMessage().getMessageHeader()).getMessageHeaderMap());
  13. String rootTag = BaseMessage.ROOT_TAG;
  14. if (this.getMessage() != null)
  15. if (this.getMessage().getMessageDataDesc(null) != null)
  16. if (this.getMessage().getMessageDataDesc(null).getKey() != null)
  17. rootTag = this.getMessage().getMessageDataDesc(null).getKey();
  18. StringBuffer sb = new StringBuffer();
  19. Util.addStartTag(sb, rootTag);
  20. Util.addXMLMap(sb, map);
  21. Util.addEndTag(sb, rootTag);
  22. String strXML = sb.toString();
  23. if (this.getXSLTDocument() != null)
  24. strXML = this.transformMessage(strXML, null); // Now use the XSLT document to convert this XSL document.
  25. boolean bSuccess = this.getMessage().setXML(strXML);
  26. return bSuccess ? DBConstants.NORMAL_RETURN : DBConstants.ERROR_RETURN;
  27. }
  28. /**

相关文章