colly_wyx
2018-06-14 bef2c06923d3ba6727654f734bb93d5a09855dc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace PhalApiClientSDK
{
    /**
     * 接口过滤器
     * 
     * - 可用于接口签名生成
     */
    public interface PhalApiClientFilter {
 
        /**
         * 过滤操作
         * @param string service 接口服务名称
         * @param Map<String, String> params 接口参数,注意是引用。可以直接修改
         * @return null
         */
        void filter(String service, Dictionary<String, String> paramsList);
    }
 
}