summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/key/Template.java
blob: bfcf61eb77c46ac54ba469113883b886ac98c79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.netscape.certsrv.key;


public class Template{
    String templateID;
    String templateName;
    String templateDescription;
    public Template(String templateID, String templateName, String templateDescription) {
        super();
        this.templateID = templateID;
        this.templateName = templateName;
        this.templateDescription = templateDescription;
    }

    public void printTemplateInfo(){
        System.out.println();
        System.out.println("  Template ID: " + templateID);
        System.out.println("  Template Name: " + templateName);
        System.out.println("  Template Description: " + templateDescription);
    }
}