Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Result |
|
| 0.0;0 |
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 | |
3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
4 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
5 | // Generated on: 2009.07.19 at 09:49:41 PM CDT | |
6 | // | |
7 | ||
8 | ||
9 | package org.apache.ws.scout.model.uddi.v2; | |
10 | ||
11 | import javax.xml.bind.annotation.XmlAccessType; | |
12 | import javax.xml.bind.annotation.XmlAccessorType; | |
13 | import javax.xml.bind.annotation.XmlAttribute; | |
14 | import javax.xml.bind.annotation.XmlType; | |
15 | ||
16 | ||
17 | /** | |
18 | * <p>Java class for result complex type. | |
19 | * | |
20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
21 | * | |
22 | * <pre> | |
23 | * <complexType name="result"> | |
24 | * <complexContent> | |
25 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
26 | * <sequence> | |
27 | * <element ref="{urn:uddi-org:api_v2}errInfo" minOccurs="0"/> | |
28 | * </sequence> | |
29 | * <attribute name="keyType" type="{urn:uddi-org:api_v2}keyType" /> | |
30 | * <attribute name="errno" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> | |
31 | * </restriction> | |
32 | * </complexContent> | |
33 | * </complexType> | |
34 | * </pre> | |
35 | * | |
36 | * | |
37 | */ | |
38 | @XmlAccessorType(XmlAccessType.FIELD) | |
39 | @XmlType(name = "result", propOrder = { | |
40 | "errInfo" | |
41 | }) | |
42 | 0 | public class Result { |
43 | ||
44 | protected ErrInfo errInfo; | |
45 | @XmlAttribute | |
46 | protected KeyType keyType; | |
47 | @XmlAttribute(required = true) | |
48 | protected int errno; | |
49 | ||
50 | /** | |
51 | * Gets the value of the errInfo property. | |
52 | * | |
53 | * @return | |
54 | * possible object is | |
55 | * {@link ErrInfo } | |
56 | * | |
57 | */ | |
58 | public ErrInfo getErrInfo() { | |
59 | 0 | return errInfo; |
60 | } | |
61 | ||
62 | /** | |
63 | * Sets the value of the errInfo property. | |
64 | * | |
65 | * @param value | |
66 | * allowed object is | |
67 | * {@link ErrInfo } | |
68 | * | |
69 | */ | |
70 | public void setErrInfo(ErrInfo value) { | |
71 | 0 | this.errInfo = value; |
72 | 0 | } |
73 | ||
74 | /** | |
75 | * Gets the value of the keyType property. | |
76 | * | |
77 | * @return | |
78 | * possible object is | |
79 | * {@link KeyType } | |
80 | * | |
81 | */ | |
82 | public KeyType getKeyType() { | |
83 | 0 | return keyType; |
84 | } | |
85 | ||
86 | /** | |
87 | * Sets the value of the keyType property. | |
88 | * | |
89 | * @param value | |
90 | * allowed object is | |
91 | * {@link KeyType } | |
92 | * | |
93 | */ | |
94 | public void setKeyType(KeyType value) { | |
95 | 0 | this.keyType = value; |
96 | 0 | } |
97 | ||
98 | /** | |
99 | * Gets the value of the errno property. | |
100 | * | |
101 | */ | |
102 | public int getErrno() { | |
103 | 0 | return errno; |
104 | } | |
105 | ||
106 | /** | |
107 | * Sets the value of the errno property. | |
108 | * | |
109 | */ | |
110 | public void setErrno(int value) { | |
111 | 0 | this.errno = value; |
112 | 0 | } |
113 | ||
114 | } |