1
2 package org.miloss.fgsms.services.interfaces.policyconfiguration;
3
4 import java.io.Serializable;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10
11
12 /**
13 *
14 * returns a list of machines that have been observed
15 * requires global privledges
16 *
17 *
18 * <p>Java class for GetMachinesByDomainRequestMsg complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="GetMachinesByDomainRequestMsg">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
28 * <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
34 *
35 *
36 */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "GetMachinesByDomainRequestMsg", propOrder = {
39 "classification",
40 "domain"
41 })
42 public class GetMachinesByDomainRequestMsg
43 implements Serializable
44 {
45
46 private final static long serialVersionUID = 1L;
47 @XmlElement(required = true, nillable = true)
48 protected SecurityWrapper classification;
49 @XmlElement(required = true, nillable = true)
50 protected String domain;
51
52 /**
53 * Gets the value of the classification property.
54 *
55 * @return
56 * possible object is
57 * {@link SecurityWrapper }
58 *
59 */
60 public SecurityWrapper getClassification() {
61 return classification;
62 }
63
64 /**
65 * Sets the value of the classification property.
66 *
67 * @param value
68 * allowed object is
69 * {@link SecurityWrapper }
70 *
71 */
72 public void setClassification(SecurityWrapper value) {
73 this.classification = value;
74 }
75
76 public boolean isSetClassification() {
77 return (this.classification!= null);
78 }
79
80 /**
81 * Gets the value of the domain property.
82 *
83 * @return
84 * possible object is
85 * {@link String }
86 *
87 */
88 public String getDomain() {
89 return domain;
90 }
91
92 /**
93 * Sets the value of the domain property.
94 *
95 * @param value
96 * allowed object is
97 * {@link String }
98 *
99 */
100 public void setDomain(String value) {
101 this.domain = value;
102 }
103
104 public boolean isSetDomain() {
105 return (this.domain!= null);
106 }
107
108 }