This project has retired. For details please refer to its Attic page.
AddressLine xref
View Javadoc
1   /*
2    * Copyright 2001-2008 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   */
17  package org.uddi.api_v2;
18  
19  import javax.xml.bind.annotation.XmlAccessType;
20  import javax.xml.bind.annotation.XmlAccessorType;
21  import javax.xml.bind.annotation.XmlAttribute;
22  import javax.xml.bind.annotation.XmlType;
23  import javax.xml.bind.annotation.XmlValue;
24  
25  
26  /**
27   * <p>Java class for addressLine complex type.
28   * 
29   * <p>The following schema fragment specifies the expected content contained within this class.
30   * 
31   * <pre>
32   * &lt;complexType name="addressLine">
33   *   &lt;simpleContent>
34   *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
35   *       &lt;attribute name="keyName" type="{http://www.w3.org/2001/XMLSchema}string" />
36   *       &lt;attribute name="keyValue" type="{http://www.w3.org/2001/XMLSchema}string" />
37   *     &lt;/extension>
38   *   &lt;/simpleContent>
39   * &lt;/complexType>
40   * </pre>
41   * 
42   * 
43   */
44  @XmlAccessorType(XmlAccessType.FIELD)
45  @XmlType(name = "addressLine", propOrder = {
46      "value"
47  })
48  public class AddressLine {
49  
50      @XmlValue
51      protected String value;
52      @XmlAttribute(name = "keyName")
53      protected String keyName;
54      @XmlAttribute(name = "keyValue")
55      protected String keyValue;
56  
57      /**
58       * Gets the value of the value property.
59       * 
60       * @return
61       *     possible object is
62       *     {@link String }
63       *     
64       */
65      public String getValue() {
66          return value;
67      }
68  
69      /**
70       * Sets the value of the value property.
71       * 
72       * @param value
73       *     allowed object is
74       *     {@link String }
75       *     
76       */
77      public void setValue(String value) {
78          this.value = value;
79      }
80  
81      /**
82       * Gets the value of the keyName property.
83       * 
84       * @return
85       *     possible object is
86       *     {@link String }
87       *     
88       */
89      public String getKeyName() {
90          return keyName;
91      }
92  
93      /**
94       * Sets the value of the keyName property.
95       * 
96       * @param value
97       *     allowed object is
98       *     {@link String }
99       *     
100      */
101     public void setKeyName(String value) {
102         this.keyName = value;
103     }
104 
105     /**
106      * Gets the value of the keyValue property.
107      * 
108      * @return
109      *     possible object is
110      *     {@link String }
111      *     
112      */
113     public String getKeyValue() {
114         return keyValue;
115     }
116 
117     /**
118      * Sets the value of the keyValue property.
119      * 
120      * @param value
121      *     allowed object is
122      *     {@link String }
123      *     
124      */
125     public void setKeyValue(String value) {
126         this.keyValue = value;
127     }
128 
129 }