src/share/jaxws_classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/XmlWebServiceRef.java

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/XmlWebServiceRef.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,248 @@
     1.4 +/*
     1.5 + * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.oracle.xmlns.internal.webservices.jaxws_databinding;
    1.30 +import javax.xml.bind.annotation.XmlAccessType;
    1.31 +import javax.xml.bind.annotation.XmlAccessorType;
    1.32 +import javax.xml.bind.annotation.XmlAttribute;
    1.33 +import javax.xml.bind.annotation.XmlRootElement;
    1.34 +import javax.xml.bind.annotation.XmlType;
    1.35 +import javax.xml.ws.Service;
    1.36 +import java.lang.annotation.Annotation;
    1.37 +
    1.38 +import static com.oracle.xmlns.internal.webservices.jaxws_databinding.Util.findClass;
    1.39 +import static com.oracle.xmlns.internal.webservices.jaxws_databinding.Util.nullSafe;
    1.40 +
    1.41 +
    1.42 +/**
    1.43 + * This file was generated by JAXB-RI v2.2.6 and afterwards modified
    1.44 + * to implement appropriate Annotation
    1.45 + *
    1.46 + * <p>Java class for anonymous complex type.
    1.47 + *
    1.48 + * <p>The following schema fragment specifies the expected content contained within this class.
    1.49 + *
    1.50 + * <pre>
    1.51 + * &lt;complexType>
    1.52 + *   &lt;complexContent>
    1.53 + *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    1.54 + *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
    1.55 + *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
    1.56 + *       &lt;attribute name="mappedName" type="{http://www.w3.org/2001/XMLSchema}string" />
    1.57 + *       &lt;attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
    1.58 + *       &lt;attribute name="wsdlLocation" type="{http://www.w3.org/2001/XMLSchema}string" />
    1.59 + *     &lt;/restriction>
    1.60 + *   &lt;/complexContent>
    1.61 + * &lt;/complexType>
    1.62 + * </pre>
    1.63 + */
    1.64 +@XmlAccessorType(XmlAccessType.FIELD)
    1.65 +@XmlType(name = "")
    1.66 +@XmlRootElement(name = "web-service-ref")
    1.67 +public class XmlWebServiceRef implements javax.xml.ws.WebServiceRef {
    1.68 +
    1.69 +    @XmlAttribute(name = "name")
    1.70 +    protected String name;
    1.71 +    @XmlAttribute(name = "type")
    1.72 +    protected String type;
    1.73 +    @XmlAttribute(name = "mappedName")
    1.74 +    protected String mappedName;
    1.75 +    @XmlAttribute(name = "value")
    1.76 +    protected String value;
    1.77 +    @XmlAttribute(name = "wsdlLocation")
    1.78 +    protected String wsdlLocation;
    1.79 +    @XmlAttribute(name = "lookup")
    1.80 +    protected String lookup;
    1.81 +
    1.82 +    /**
    1.83 +     * Gets the value of the name property.
    1.84 +     *
    1.85 +     * @return
    1.86 +     *     possible object is
    1.87 +     *     {@link String }
    1.88 +     *
    1.89 +     */
    1.90 +    public String getName() {
    1.91 +        return name;
    1.92 +    }
    1.93 +
    1.94 +    /**
    1.95 +     * Sets the value of the name property.
    1.96 +     *
    1.97 +     * @param value
    1.98 +     *     allowed object is
    1.99 +     *     {@link String }
   1.100 +     *
   1.101 +     */
   1.102 +    public void setName(String value) {
   1.103 +        this.name = value;
   1.104 +    }
   1.105 +
   1.106 +    /**
   1.107 +     * Gets the value of the type property.
   1.108 +     *
   1.109 +     * @return
   1.110 +     *     possible object is
   1.111 +     *     {@link String }
   1.112 +     *
   1.113 +     */
   1.114 +    public String getType() {
   1.115 +        return type;
   1.116 +    }
   1.117 +
   1.118 +    /**
   1.119 +     * Sets the value of the type property.
   1.120 +     *
   1.121 +     * @param value
   1.122 +     *     allowed object is
   1.123 +     *     {@link String }
   1.124 +     *
   1.125 +     */
   1.126 +    public void setType(String value) {
   1.127 +        this.type = value;
   1.128 +    }
   1.129 +
   1.130 +    /**
   1.131 +     * Gets the value of the mappedName property.
   1.132 +     *
   1.133 +     * @return
   1.134 +     *     possible object is
   1.135 +     *     {@link String }
   1.136 +     *
   1.137 +     */
   1.138 +    public String getMappedName() {
   1.139 +        return mappedName;
   1.140 +    }
   1.141 +
   1.142 +    /**
   1.143 +     * Sets the value of the mappedName property.
   1.144 +     *
   1.145 +     * @param value
   1.146 +     *     allowed object is
   1.147 +     *     {@link String }
   1.148 +     *
   1.149 +     */
   1.150 +    public void setMappedName(String value) {
   1.151 +        this.mappedName = value;
   1.152 +    }
   1.153 +
   1.154 +    /**
   1.155 +     * Gets the value of the value property.
   1.156 +     *
   1.157 +     * @return
   1.158 +     *     possible object is
   1.159 +     *     {@link String }
   1.160 +     *
   1.161 +     */
   1.162 +    public String getValue() {
   1.163 +        return value;
   1.164 +    }
   1.165 +
   1.166 +    /**
   1.167 +     * Sets the value of the value property.
   1.168 +     *
   1.169 +     * @param value
   1.170 +     *     allowed object is
   1.171 +     *     {@link String }
   1.172 +     *
   1.173 +     */
   1.174 +    public void setValue(String value) {
   1.175 +        this.value = value;
   1.176 +    }
   1.177 +
   1.178 +    /**
   1.179 +     * Gets the value of the wsdlLocation property.
   1.180 +     *
   1.181 +     * @return
   1.182 +     *     possible object is
   1.183 +     *     {@link String }
   1.184 +     *
   1.185 +     */
   1.186 +    public String getWsdlLocation() {
   1.187 +        return wsdlLocation;
   1.188 +    }
   1.189 +
   1.190 +    /**
   1.191 +     * Sets the value of the wsdlLocation property.
   1.192 +     *
   1.193 +     * @param value
   1.194 +     *     allowed object is
   1.195 +     *     {@link String }
   1.196 +     *
   1.197 +     */
   1.198 +    public void setWsdlLocation(String value) {
   1.199 +        this.wsdlLocation = value;
   1.200 +    }
   1.201 +
   1.202 +    public String getLookup() {
   1.203 +        return lookup;
   1.204 +    }
   1.205 +
   1.206 +    public void setLookup(String lookup) {
   1.207 +        this.lookup = lookup;
   1.208 +    }
   1.209 +
   1.210 +    @Override
   1.211 +    public String name() {
   1.212 +        return nullSafe(name);
   1.213 +    }
   1.214 +
   1.215 +    @Override
   1.216 +    public Class<?> type() {
   1.217 +        if (type == null) {
   1.218 +            return Object.class;
   1.219 +        }
   1.220 +        return findClass(type);
   1.221 +    }
   1.222 +
   1.223 +    @Override
   1.224 +    public String mappedName() {
   1.225 +        return nullSafe(mappedName);
   1.226 +    }
   1.227 +
   1.228 +    @Override
   1.229 +    @SuppressWarnings("unchecked")
   1.230 +    public Class<? extends Service> value() {
   1.231 +        if (value == null) {
   1.232 +            return Service.class;
   1.233 +        }
   1.234 +        return (Class<Service>) findClass(value);
   1.235 +    }
   1.236 +
   1.237 +    @Override
   1.238 +    public String wsdlLocation() {
   1.239 +        return nullSafe(wsdlLocation);
   1.240 +    }
   1.241 +
   1.242 +    @Override
   1.243 +    public String lookup() {
   1.244 +        return nullSafe(lookup);
   1.245 +    }
   1.246 +
   1.247 +    @Override
   1.248 +    public Class<? extends Annotation> annotationType() {
   1.249 +        return javax.xml.ws.WebServiceRef.class;
   1.250 +    }
   1.251 +}

mercurial