shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.walker.remote;
 
/**
 * 描述:双向认证时,提供客户端证书信息
 * @author 时克英
 * @date 2017年1月22日 下午12:05:22
 */
 
public class DoubleTrust {
 
    // 证书绝对路径
    private String cerFilepath;
    
    // 证书密码
    private String password;
 
    public String getCerFilepath() {
        return cerFilepath;
    }
 
    public void setCerFilepath(String cerFilepath) {
        this.cerFilepath = cerFilepath;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
    
    @Override
    public String toString(){
        return new StringBuilder("[ cerFilepath=").append(cerFilepath)
                .append(", password=").append(password)
                .append("]").toString();
    }
}