summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/system/DomainInfo.java
blob: 50b606af38c0467cc1cda33e7899fdbc58ce35bb (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
// --- 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) 2012 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK --- 
package com.netscape.certsrv.system;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * @author alee
 *
 */
@XmlRootElement(name="DomainInfo")
public class DomainInfo {
    
    @XmlElement(name="CAList")
    protected SecurityDomainHostList caList;
    
    @XmlElement(name="KRAList")
    protected SecurityDomainHostList kraList;
    
    @XmlElement(name="OCSPList")
    protected SecurityDomainHostList ocspList;
    
    @XmlElement(name="TKSList")
    protected SecurityDomainHostList tksList;
    
    @XmlElement(name="TPSList")
    protected SecurityDomainHostList tpsList;
    
    @XmlElement(name="RAList")
    protected SecurityDomainHostList raList;
    
    @XmlElement
    protected String name;

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the caList
     */
    public SecurityDomainHostList getCaList() {
        return caList;
    }

    /**
     * @param caList the caList to set
     */
    public void setCaList(SecurityDomainHostList caList) {
        this.caList = caList;
    }

    /**
     * @return the kraList
     */
    public SecurityDomainHostList getKraList() {
        return kraList;
    }

    /**
     * @param kraList the kraList to set
     */
    public void setKraList(SecurityDomainHostList kraList) {
        this.kraList = kraList;
    }

    /**
     * @return the ocspList
     */
    public SecurityDomainHostList getOcspList() {
        return ocspList;
    }

    /**
     * @param ocspList the ocspList to set
     */
    public void setOcspList(SecurityDomainHostList ocspList) {
        this.ocspList = ocspList;
    }

    /**
     * @return the tksList
     */
    public SecurityDomainHostList getTksList() {
        return tksList;
    }

    /**
     * @param tksList the tksList to set
     */
    public void setTksList(SecurityDomainHostList tksList) {
        this.tksList = tksList;
    }

    /**
     * @return the tpsList
     */
    public SecurityDomainHostList getTpsList() {
        return tpsList;
    }

    /**
     * @param tpsList the tpsList to set
     */
    public void setTpsList(SecurityDomainHostList tpsList) {
        this.tpsList = tpsList;
    }

    /**
     * @return the raList
     */
    public SecurityDomainHostList getRaList() {
        return raList;
    }

    /**
     * @param raList the raList to set
     */
    public void setRaList(SecurityDomainHostList raList) {
        this.raList = raList;
    }

     
    
    
    
     

}