Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/src/main/java/com/heuristiclab/okb/wsclient/admin/AddProblemResponse.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: 1.6 KB
Line 
1
2package com.heuristiclab.okb.wsclient.admin;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlRootElement;
8import javax.xml.bind.annotation.XmlType;
9
10
11/**
12 * <p>Java class for anonymous complex type.
13 *
14 * <p>The following schema fragment specifies the expected content contained within this class.
15 *
16 * <pre>
17 * &lt;complexType>
18 *   &lt;complexContent>
19 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 *       &lt;sequence>
21 *         &lt;element name="AddProblemResult" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
22 *       &lt;/sequence>
23 *     &lt;/restriction>
24 *   &lt;/complexContent>
25 * &lt;/complexType>
26 * </pre>
27 *
28 *
29 */
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "", propOrder = {
32    "addProblemResult"
33})
34@XmlRootElement(name = "AddProblemResponse")
35public class AddProblemResponse {
36
37    @XmlElement(name = "AddProblemResult")
38    protected Long addProblemResult;
39
40    /**
41     * Gets the value of the addProblemResult property.
42     *
43     * @return
44     *     possible object is
45     *     {@link Long }
46     *     
47     */
48    public Long getAddProblemResult() {
49        return addProblemResult;
50    }
51
52    /**
53     * Sets the value of the addProblemResult property.
54     *
55     * @param value
56     *     allowed object is
57     *     {@link Long }
58     *     
59     */
60    public void setAddProblemResult(Long value) {
61        this.addProblemResult = value;
62    }
63
64}
Note: See TracBrowser for help on using the repository browser.