Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KeysOwned |
|
| 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.XmlType; | |
14 | ||
15 | ||
16 | /** | |
17 | * <p>Java class for keysOwned complex type. | |
18 | * | |
19 | * <p>The following schema fragment specifies the expected content contained within this class. | |
20 | * | |
21 | * <pre> | |
22 | * <complexType name="keysOwned"> | |
23 | * <complexContent> | |
24 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
25 | * <sequence> | |
26 | * <element ref="{urn:uddi-org:api_v2}fromKey" minOccurs="0"/> | |
27 | * <element ref="{urn:uddi-org:api_v2}toKey" minOccurs="0"/> | |
28 | * </sequence> | |
29 | * </restriction> | |
30 | * </complexContent> | |
31 | * </complexType> | |
32 | * </pre> | |
33 | * | |
34 | * | |
35 | */ | |
36 | @XmlAccessorType(XmlAccessType.FIELD) | |
37 | @XmlType(name = "keysOwned", propOrder = { | |
38 | "fromKey", | |
39 | "toKey" | |
40 | }) | |
41 | 0 | public class KeysOwned { |
42 | ||
43 | protected String fromKey; | |
44 | protected String toKey; | |
45 | ||
46 | /** | |
47 | * Gets the value of the fromKey property. | |
48 | * | |
49 | * @return | |
50 | * possible object is | |
51 | * {@link String } | |
52 | * | |
53 | */ | |
54 | public String getFromKey() { | |
55 | 0 | return fromKey; |
56 | } | |
57 | ||
58 | /** | |
59 | * Sets the value of the fromKey property. | |
60 | * | |
61 | * @param value | |
62 | * allowed object is | |
63 | * {@link String } | |
64 | * | |
65 | */ | |
66 | public void setFromKey(String value) { | |
67 | 0 | this.fromKey = value; |
68 | 0 | } |
69 | ||
70 | /** | |
71 | * Gets the value of the toKey property. | |
72 | * | |
73 | * @return | |
74 | * possible object is | |
75 | * {@link String } | |
76 | * | |
77 | */ | |
78 | public String getToKey() { | |
79 | 0 | return toKey; |
80 | } | |
81 | ||
82 | /** | |
83 | * Sets the value of the toKey property. | |
84 | * | |
85 | * @param value | |
86 | * allowed object is | |
87 | * {@link String } | |
88 | * | |
89 | */ | |
90 | public void setToKey(String value) { | |
91 | 0 | this.toKey = value; |
92 | 0 | } |
93 | ||
94 | } |