src/share/jaxws_classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/XmlResponseWrapper.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/XmlResponseWrapper.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,188 @@
     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 java.lang.annotation.Annotation;
    1.36 +
    1.37 +import static com.oracle.xmlns.internal.webservices.jaxws_databinding.Util.nullSafe;
    1.38 +
    1.39 +
    1.40 +/**
    1.41 + * This file was generated by JAXB-RI v2.2.6 and afterwards modified
    1.42 + * to implement appropriate Annotation
    1.43 + *
    1.44 + * <p>Java class for anonymous complex type.
    1.45 + *
    1.46 + * <p>The following schema fragment specifies the expected content contained within this class.
    1.47 + *
    1.48 + * <pre>
    1.49 + * &lt;complexType>
    1.50 + *   &lt;complexContent>
    1.51 + *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    1.52 + *       &lt;attribute name="local-name" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
    1.53 + *       &lt;attribute name="target-namespace" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
    1.54 + *       &lt;attribute name="class-name" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
    1.55 + *       &lt;attribute name="part-name" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
    1.56 + *     &lt;/restriction>
    1.57 + *   &lt;/complexContent>
    1.58 + * &lt;/complexType>
    1.59 + * </pre>
    1.60 + */
    1.61 +@XmlAccessorType(XmlAccessType.FIELD)
    1.62 +@XmlType(name = "")
    1.63 +@XmlRootElement(name = "response-wrapper")
    1.64 +public class XmlResponseWrapper implements javax.xml.ws.ResponseWrapper {
    1.65 +
    1.66 +    @XmlAttribute(name = "local-name")
    1.67 +    protected String localName;
    1.68 +    @XmlAttribute(name = "target-namespace")
    1.69 +    protected String targetNamespace;
    1.70 +    @XmlAttribute(name = "class-name")
    1.71 +    protected String className;
    1.72 +    @XmlAttribute(name = "part-name")
    1.73 +    protected String partName;
    1.74 +
    1.75 +    /**
    1.76 +     * Gets the value of the localName property.
    1.77 +     *
    1.78 +     * @return
    1.79 +     *     possible object is
    1.80 +     *     {@link String }
    1.81 +     *
    1.82 +     */
    1.83 +    public String getLocalName() {
    1.84 +        if (localName == null) {
    1.85 +            return "";
    1.86 +        } else {
    1.87 +            return localName;
    1.88 +        }
    1.89 +    }
    1.90 +
    1.91 +    /**
    1.92 +     * Sets the value of the localName property.
    1.93 +     *
    1.94 +     * @param value
    1.95 +     *     allowed object is
    1.96 +     *     {@link String }
    1.97 +     *
    1.98 +     */
    1.99 +    public void setLocalName(String value) {
   1.100 +        this.localName = value;
   1.101 +    }
   1.102 +
   1.103 +    /**
   1.104 +     * Gets the value of the targetNamespace property.
   1.105 +     *
   1.106 +     * @return
   1.107 +     *     possible object is
   1.108 +     *     {@link String }
   1.109 +     *
   1.110 +     */
   1.111 +    public String getTargetNamespace() {
   1.112 +        if (targetNamespace == null) {
   1.113 +            return "";
   1.114 +        } else {
   1.115 +            return targetNamespace;
   1.116 +        }
   1.117 +    }
   1.118 +
   1.119 +    /**
   1.120 +     * Sets the value of the targetNamespace property.
   1.121 +     *
   1.122 +     * @param value
   1.123 +     *     allowed object is
   1.124 +     *     {@link String }
   1.125 +     *
   1.126 +     */
   1.127 +    public void setTargetNamespace(String value) {
   1.128 +        this.targetNamespace = value;
   1.129 +    }
   1.130 +
   1.131 +    /**
   1.132 +     * Gets the value of the className property.
   1.133 +     *
   1.134 +     * @return
   1.135 +     *     possible object is
   1.136 +     *     {@link String }
   1.137 +     *
   1.138 +     */
   1.139 +    public String getClassName() {
   1.140 +        if (className == null) {
   1.141 +            return "";
   1.142 +        } else {
   1.143 +            return className;
   1.144 +        }
   1.145 +    }
   1.146 +
   1.147 +    /**
   1.148 +     * Sets the value of the className property.
   1.149 +     *
   1.150 +     * @param value
   1.151 +     *     allowed object is
   1.152 +     *     {@link String }
   1.153 +     *
   1.154 +     */
   1.155 +    public void setClassName(String value) {
   1.156 +        this.className = value;
   1.157 +    }
   1.158 +
   1.159 +    public String getPartName() {
   1.160 +        return partName;
   1.161 +    }
   1.162 +
   1.163 +    public void setPartName(String partName) {
   1.164 +        this.partName = partName;
   1.165 +    }
   1.166 +
   1.167 +    @Override
   1.168 +    public String localName() {
   1.169 +        return nullSafe(localName);
   1.170 +    }
   1.171 +
   1.172 +    @Override
   1.173 +    public String targetNamespace() {
   1.174 +        return nullSafe(targetNamespace);
   1.175 +    }
   1.176 +
   1.177 +    @Override
   1.178 +    public String className() {
   1.179 +        return nullSafe(className);
   1.180 +    }
   1.181 +
   1.182 +    @Override
   1.183 +    public String partName() {
   1.184 +        return nullSafe(partName);
   1.185 +    }
   1.186 +
   1.187 +    @Override
   1.188 +    public Class<? extends Annotation> annotationType() {
   1.189 +        return javax.xml.ws.ResponseWrapper.class;
   1.190 +    }
   1.191 +}

mercurial