Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/src/main/java/com/heuristiclab/okb/wsclient/admin/GetProblemResponse.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.9 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="GetProblemResult" type="{http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration.DataTransfer}Problem" minOccurs="0"/>
23 *       &lt;/sequence>
24 *     &lt;/restriction>
25 *   &lt;/complexContent>
26 * &lt;/complexType>
27 * </pre>
28 *
29 *
30 */
31@XmlAccessorType(XmlAccessType.FIELD)
32@XmlType(name = "", propOrder = {
33    "getProblemResult"
34})
35@XmlRootElement(name = "GetProblemResponse")
36public class GetProblemResponse {
37
38    @XmlElementRef(name = "GetProblemResult", namespace = "http://tempuri.org/", type = JAXBElement.class)
39    protected JAXBElement<Problem> getProblemResult;
40
41    /**
42     * Gets the value of the getProblemResult property.
43     *
44     * @return
45     *     possible object is
46     *     {@link JAXBElement }{@code <}{@link Problem }{@code >}
47     *     
48     */
49    public JAXBElement<Problem> getGetProblemResult() {
50        return getProblemResult;
51    }
52
53    /**
54     * Sets the value of the getProblemResult property.
55     *
56     * @param value
57     *     allowed object is
58     *     {@link JAXBElement }{@code <}{@link Problem }{@code >}
59     *     
60     */
61    public void setGetProblemResult(JAXBElement<Problem> value) {
62        this.getProblemResult = ((JAXBElement<Problem> ) value);
63    }
64
65}
Note: See TracBrowser for help on using the repository browser.