Package com.dianping.cat.home.alert.thirdparty.entity

Examples of com.dianping.cat.home.alert.thirdparty.entity.Par


  private String buildPars(Map<String, Par> paras) {
    String[] s = new String[paras.size()];
    int i = 0;

    for (Entry<String, Par> entry : paras.entrySet()) {
      Par par = entry.getValue();
      s[i++] = par.getId() + "=" + entry.getValue().getValue();
    }
    return StringUtils.join(s, "&");
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.home.alert.thirdparty.entity.Par

Copyright © 2018 www.massapicom. 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.