Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/src/main/java/com/heuristiclab/okb/wsclient/admin/UpdateProblemUsers.java @ 5761

Last change on this file since 5761 was 5761, checked in by mholper, 13 years ago

first Unit-Test build against new AdministrationService #1441

File size: 2.4 KB
Line 
1
2package com.heuristiclab.okb.wsclient.admin;
3
4import javax.xml.bind.JAXBElement;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElementRef;
8import javax.xml.bind.annotation.XmlRootElement;
9import javax.xml.bind.annotation.XmlType;
10
11
12/**
13 * <p>Java class for anonymous complex type.
14 *
15 * <p>The following schema fragment specifies the expected content contained within this class.
16 *
17 * <pre>
18 * &lt;complexType>
19 *   &lt;complexContent>
20 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 *       &lt;sequence>
22 *         &lt;element name="problemId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
23 *         &lt;element name="users" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfguid" minOccurs="0"/>
24 *       &lt;/sequence>
25 *     &lt;/restriction>
26 *   &lt;/complexContent>
27 * &lt;/complexType>
28 * </pre>
29 *
30 *
31 */
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "", propOrder = {
34    "problemId",
35    "users"
36})
37@XmlRootElement(name = "UpdateProblemUsers")
38public class UpdateProblemUsers {
39
40    protected Long problemId;
41    @XmlElementRef(name = "users", namespace = "http://tempuri.org/", type = JAXBElement.class)
42    protected JAXBElement<ArrayOfguid> users;
43
44    /**
45     * Gets the value of the problemId property.
46     *
47     * @return
48     *     possible object is
49     *     {@link Long }
50     *     
51     */
52    public Long getProblemId() {
53        return problemId;
54    }
55
56    /**
57     * Sets the value of the problemId property.
58     *
59     * @param value
60     *     allowed object is
61     *     {@link Long }
62     *     
63     */
64    public void setProblemId(Long value) {
65        this.problemId = value;
66    }
67
68    /**
69     * Gets the value of the users property.
70     *
71     * @return
72     *     possible object is
73     *     {@link JAXBElement }{@code <}{@link ArrayOfguid }{@code >}
74     *     
75     */
76    public JAXBElement<ArrayOfguid> getUsers() {
77        return users;
78    }
79
80    /**
81     * Sets the value of the users property.
82     *
83     * @param value
84     *     allowed object is
85     *     {@link JAXBElement }{@code <}{@link ArrayOfguid }{@code >}
86     *     
87     */
88    public void setUsers(JAXBElement<ArrayOfguid> value) {
89        this.users = ((JAXBElement<ArrayOfguid> ) value);
90    }
91
92}
Note: See TracBrowser for help on using the repository browser.