summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/system/SecurityDomainHostList.java
blob: 375dee754e7f23362e341bb29c5fb65eda129b81 (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
/**
 * 
 */
package com.netscape.certsrv.system;

import java.util.Collection;

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

/**
 * @author alee
 *
 */
@XmlRootElement
public class SecurityDomainHostList {
    protected Collection<SecurityDomainHost> systems;
    
    @XmlElement(name="SubsystemCount")
    protected int count;

    /**
     * @return the systems
     */
    @XmlElementRef
    public Collection<SecurityDomainHost> getSystems() {
        return systems;
    }

    /**
     * @param systems the systems to set
     */
    public void setSystems(Collection<SecurityDomainHost> systems) {
        this.systems = systems;
    }

    /**
     * @return the count
     */
    public int getCount() {
        return count;
    }

    /**
     * @param count the count to set
     */
    public void setCount(int count) {
        this.count = count;
    }
    
    
}