You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
316 B

  1. package net.phalapi.sdk;
  2. /**
  3. * 接口结果解析器
  4. *
  5. * - 可用于不同接口返回格式的处理
  6. */
  7. public interface PhalApiClientParser {
  8. /**
  9. * 结果解析
  10. * @param String apiResult
  11. * @return PhalApiClientResponse
  12. */
  13. public PhalApiClientResponse parse(String apiResult);
  14. }