~livrezmoi/livrezmoi/trackingwofull

« back to all changes in this revision

Viewing changes to TrackingWOProjectClient/src/com/npd/trackingwo/client/webservice/login/Service.java

  • Committer: Rachid Ouattara
  • Date: 2009-08-15 18:49:34 UTC
  • Revision ID: ouattara@rouattara-20090815184934-64ohiypk5cvf831a
create new branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
package com.npd.trackingwo.client.webservice.login;
 
3
 
 
4
import javax.xml.bind.annotation.XmlAccessType;
 
5
import javax.xml.bind.annotation.XmlAccessorType;
 
6
import javax.xml.bind.annotation.XmlType;
 
7
 
 
8
 
 
9
/**
 
10
 * <p>Java class for service complex type.
 
11
 * 
 
12
 * <p>The following schema fragment specifies the expected content contained within this class.
 
13
 * 
 
14
 * <pre>
 
15
 * &lt;complexType name="service">
 
16
 *   &lt;complexContent>
 
17
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 
18
 *       &lt;sequence>
 
19
 *         &lt;element name="departement" type="{http://business.trackingwo.npd.com/}departement" minOccurs="0"/>
 
20
 *         &lt;element name="serviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 
21
 *       &lt;/sequence>
 
22
 *     &lt;/restriction>
 
23
 *   &lt;/complexContent>
 
24
 * &lt;/complexType>
 
25
 * </pre>
 
26
 * 
 
27
 * 
 
28
 */
 
29
@XmlAccessorType(XmlAccessType.FIELD)
 
30
@XmlType(name = "service", propOrder = {
 
31
    "departement",
 
32
    "serviceName"
 
33
})
 
34
public class Service {
 
35
 
 
36
    protected Departement departement;
 
37
    protected String serviceName;
 
38
 
 
39
    /**
 
40
     * Gets the value of the departement property.
 
41
     * 
 
42
     * @return
 
43
     *     possible object is
 
44
     *     {@link Departement }
 
45
     *     
 
46
     */
 
47
    public Departement getDepartement() {
 
48
        return departement;
 
49
    }
 
50
 
 
51
    /**
 
52
     * Sets the value of the departement property.
 
53
     * 
 
54
     * @param value
 
55
     *     allowed object is
 
56
     *     {@link Departement }
 
57
     *     
 
58
     */
 
59
    public void setDepartement(Departement value) {
 
60
        this.departement = value;
 
61
    }
 
62
 
 
63
    /**
 
64
     * Gets the value of the serviceName property.
 
65
     * 
 
66
     * @return
 
67
     *     possible object is
 
68
     *     {@link String }
 
69
     *     
 
70
     */
 
71
    public String getServiceName() {
 
72
        return serviceName;
 
73
    }
 
74
 
 
75
    /**
 
76
     * Sets the value of the serviceName property.
 
77
     * 
 
78
     * @param value
 
79
     *     allowed object is
 
80
     *     {@link String }
 
81
     *     
 
82
     */
 
83
    public void setServiceName(String value) {
 
84
        this.serviceName = value;
 
85
    }
 
86
 
 
87
}