summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/servlet/csadmin/Cert.java
blob: 4aca6cec7e3d54fa44dced67769433f9637b6c04 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.servlet.csadmin;


import java.util.StringTokenizer;
import java.util.Vector;


public class Cert {
    private String mNickname = "";
    private String mTokenname = "";
    private String mRequest = "";
    private String mCert = "";
    private String mType = ""; // "selfsign," "local," or "remote"
    private String mDN = "";
    private String mCertTag = "";
    private String mCertpp = "";
    private String mUserFriendlyName = "";
    private String mKeyOption = "";
    private String mCustomKeysize = "";
    private String mCustomCurvename = "";
    private boolean mEnable = true;
    private boolean mSigningRequired = false;
    private String mSubsystem = "";

    public Cert(String tokenName, String nickName, String certTag) {
        mTokenname = tokenName;
        mNickname = nickName;
        mCertTag = certTag;
    }

    public void setEnable(boolean enable) {
        mEnable = enable;
    }

    public boolean isEnable() {
        return mEnable;
    }

    public void setSigningRequired(boolean required) {
        mSigningRequired = required;
    }

    public boolean isSigningRequired() {
        return mSigningRequired;
    }

    public void setNickname(String s) {
        mNickname = s;
    }

    public String getNickname() {
        return mNickname;
    }

    public void setSubsystem(String s) {
        mSubsystem = s;
    }

    public String getSubsystem() {
        return mSubsystem;
    }

    public String getUserFriendlyName() {
        return mUserFriendlyName;
    }

    public void setUserFriendlyName(String name) {
        mUserFriendlyName = name;
    }

    public String getTokenname() {
        return mTokenname;
    }

    public String getRequest() {
        return mRequest;
    }

    public void setRequest(String req) {
        mRequest = req;
    }

    public String getEscapedCert() {
        return escapeForHTML(mCert);
    }

    public String getCert() {
        return mCert;
    }

    public void setCert(String cert) {
        mCert = cert;
    }

    public String getType() {
        return mType;
    }

    public void setType(String type) {
        mType = type;
    }

    public String escapeForHTML(String s) {
      s = s.replaceAll("\"", """);
      return s;
    }

    public String getEscapedDN() {
        // Need to escape "
        return escapeForHTML(mDN);
    }

    public String getDN() {
        return mDN;
    }

    public void setDN(String dn) {
        mDN = dn;
    }

    public String getCertTag() {
        return mCertTag;
    }

    public String getEscapedCertpp() {
        return escapeForHTML(mCertpp);
    }

    public String getCertpp() {
        return mCertpp;
    }

    public void setCertpp(String pp) {
        mCertpp = pp;
    }

    public String getKeyOption() {
        return mKeyOption;
    }

    /*
     * "default" or "custom"
     */
    public void setKeyOption(String option) {
        mKeyOption = option;
    }

    public boolean useDefaultKey() {
        return (mKeyOption.equals("default"));
    }

    public String getCustomKeysize() {
        return mCustomKeysize;
    }

    public void setCustomKeysize(String size) {
        mCustomKeysize = size;
    }

    public String getCustomCurvename() {
        return mCustomCurvename;
    }

    public void setCustomCurvename(String curve) {
        mCustomCurvename = curve;
    }
}