This project has retired. For details please refer to its Attic page.
HostingRedirector 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  
24  
25  /**
26   * <p>Java class for hostingRedirector complex type.
27   * 
28   * <p>The following schema fragment specifies the expected content contained within this class.
29   * 
30   * <pre>
31   * &lt;complexType name="hostingRedirector">
32   *   &lt;complexContent>
33   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34   *       &lt;attribute name="bindingKey" use="required" type="{urn:uddi-org:api_v2}bindingKey" />
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "hostingRedirector")
44  public class HostingRedirector {
45  
46      @XmlAttribute(name = "bindingKey", required = true)
47      protected String bindingKey;
48  
49      /**
50       * Gets the value of the bindingKey property.
51       * 
52       * @return
53       *     possible object is
54       *     {@link String }
55       *     
56       */
57      public String getBindingKey() {
58          return bindingKey;
59      }
60  
61      /**
62       * Sets the value of the bindingKey property.
63       * 
64       * @param value
65       *     allowed object is
66       *     {@link String }
67       *     
68       */
69      public void setBindingKey(String value) {
70          this.bindingKey = value;
71      }
72  
73  }