summaryrefslogtreecommitdiffstats
path: root/pki/base/console/src/com/netscape/admin/certsrv/security/AbstractCipher.java
blob: ec330fc0c08eb274ac545875492c756019b2d9d2 (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
// --- 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.admin.certsrv.security;

import javax.swing.*;
import javax.swing.border.*;
import com.netscape.management.nmclf.*;

/**
 *
 * Representation of a cipher under cipher preference.
 *
 * @version    1.0    98/07/10
 * @author     <A HREF="mailto:shihcm@netscape.com">shihcm@netscape.com</A>
 *
 * @see        com.netscape.admin.certsrv.security.AbstractCipher
 * @see        com.netscape.admin.certsrv.security.IAbstractCipherSet
 * @see        com.netscape.admin.certsrv.security.AbstractCipher
 */

public final class AbstractCipher extends JCheckBox {

    /**
     *
     *  Symbolic name, used for storage purpose
     *  for example we currently use ssl2-RC4EXPORT to represent:
     *     "RC4 with 40 bit encryption and MD5 message authentication"
     */
    private String symbolicName = "";

    /**
     * Create an abstric cipher
     *
     * @param displayName  cipher representation to be displayed
     * @param symbolicName cipher name used for reference and storage
     *
     */
    public AbstractCipher(String displayName, String symbolicName) {
        this(displayName, symbolicName, false);
    }

    /**
      * Create an abstric cipher
      *
      * @param displayName  cipher representation to be displayed
      * @param symbolicName cipher name used for reference and storage
      * @param enabled      enable cipher
      *
      */
    public AbstractCipher(String displayName, String symbolicName,
            boolean enabled) {
        super(displayName, enabled);
        this.symbolicName = symbolicName;
    }

    /**
      *
      * Get symbolic name
      *
      * @return string, symbolic name
      *
      */
    public String getSymbolicName() {
        return symbolicName;
    }

}