src/share/jaxws_classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/XmlWebParam.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/XmlWebParam.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,244 @@
     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="header" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
    1.53 + *       &lt;attribute name="mode" type="{http://xmlns.oracle.com/webservices/jaxws-databinding}web-param-mode" default="IN" />
    1.54 + *       &lt;attribute name="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;attribute name="target-namespace" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
    1.57 + *     &lt;/restriction>
    1.58 + *   &lt;/complexContent>
    1.59 + * &lt;/complexType>
    1.60 + * </pre>
    1.61 + */
    1.62 +@XmlAccessorType(XmlAccessType.FIELD)
    1.63 +@XmlType(name = "")
    1.64 +@XmlRootElement(name = "web-param")
    1.65 +public class XmlWebParam implements javax.jws.WebParam {
    1.66 +
    1.67 +    @XmlAttribute(name = "header")
    1.68 +    protected Boolean header;
    1.69 +    @XmlAttribute(name = "mode")
    1.70 +    protected WebParamMode mode;
    1.71 +    @XmlAttribute(name = "name")
    1.72 +    protected String name;
    1.73 +    @XmlAttribute(name = "part-name")
    1.74 +    protected String partName;
    1.75 +    @XmlAttribute(name = "target-namespace")
    1.76 +    protected String targetNamespace;
    1.77 +
    1.78 +    /**
    1.79 +     * Gets the value of the header property.
    1.80 +     *
    1.81 +     * @return
    1.82 +     *     possible object is
    1.83 +     *     {@link Boolean }
    1.84 +     *
    1.85 +     */
    1.86 +    public boolean isHeader() {
    1.87 +        if (header == null) {
    1.88 +            return false;
    1.89 +        } else {
    1.90 +            return header;
    1.91 +        }
    1.92 +    }
    1.93 +
    1.94 +    /**
    1.95 +     * Sets the value of the header property.
    1.96 +     *
    1.97 +     * @param value
    1.98 +     *     allowed object is
    1.99 +     *     {@link Boolean }
   1.100 +     *
   1.101 +     */
   1.102 +    public void setHeader(Boolean value) {
   1.103 +        this.header = value;
   1.104 +    }
   1.105 +
   1.106 +    /**
   1.107 +     * Gets the value of the mode property.
   1.108 +     *
   1.109 +     * @return
   1.110 +     *     possible object is
   1.111 +     *     {@link WebParamMode }
   1.112 +     *
   1.113 +     */
   1.114 +    public WebParamMode getMode() {
   1.115 +        if (mode == null) {
   1.116 +            return WebParamMode.IN;
   1.117 +        } else {
   1.118 +            return mode;
   1.119 +        }
   1.120 +    }
   1.121 +
   1.122 +    /**
   1.123 +     * Sets the value of the mode property.
   1.124 +     *
   1.125 +     * @param value
   1.126 +     *     allowed object is
   1.127 +     *     {@link WebParamMode }
   1.128 +     *
   1.129 +     */
   1.130 +    public void setMode(WebParamMode value) {
   1.131 +        this.mode = value;
   1.132 +    }
   1.133 +
   1.134 +    /**
   1.135 +     * Gets the value of the name property.
   1.136 +     *
   1.137 +     * @return
   1.138 +     *     possible object is
   1.139 +     *     {@link String }
   1.140 +     *
   1.141 +     */
   1.142 +    public String getName() {
   1.143 +        if (name == null) {
   1.144 +            return "";
   1.145 +        } else {
   1.146 +            return name;
   1.147 +        }
   1.148 +    }
   1.149 +
   1.150 +    /**
   1.151 +     * Sets the value of the name property.
   1.152 +     *
   1.153 +     * @param value
   1.154 +     *     allowed object is
   1.155 +     *     {@link String }
   1.156 +     *
   1.157 +     */
   1.158 +    public void setName(String value) {
   1.159 +        this.name = value;
   1.160 +    }
   1.161 +
   1.162 +    /**
   1.163 +     * Gets the value of the partName property.
   1.164 +     *
   1.165 +     * @return
   1.166 +     *     possible object is
   1.167 +     *     {@link String }
   1.168 +     *
   1.169 +     */
   1.170 +    public String getPartName() {
   1.171 +        if (partName == null) {
   1.172 +            return "";
   1.173 +        } else {
   1.174 +            return partName;
   1.175 +        }
   1.176 +    }
   1.177 +
   1.178 +    /**
   1.179 +     * Sets the value of the partName property.
   1.180 +     *
   1.181 +     * @param value
   1.182 +     *     allowed object is
   1.183 +     *     {@link String }
   1.184 +     *
   1.185 +     */
   1.186 +    public void setPartName(String value) {
   1.187 +        this.partName = value;
   1.188 +    }
   1.189 +
   1.190 +    /**
   1.191 +     * Gets the value of the targetNamespace property.
   1.192 +     *
   1.193 +     * @return
   1.194 +     *     possible object is
   1.195 +     *     {@link String }
   1.196 +     *
   1.197 +     */
   1.198 +    public String getTargetNamespace() {
   1.199 +        if (targetNamespace == null) {
   1.200 +            return "";
   1.201 +        } else {
   1.202 +            return targetNamespace;
   1.203 +        }
   1.204 +    }
   1.205 +
   1.206 +    /**
   1.207 +     * Sets the value of the targetNamespace property.
   1.208 +     *
   1.209 +     * @param value
   1.210 +     *     allowed object is
   1.211 +     *     {@link String }
   1.212 +     *
   1.213 +     */
   1.214 +    public void setTargetNamespace(String value) {
   1.215 +        this.targetNamespace = value;
   1.216 +    }
   1.217 +
   1.218 +    @Override
   1.219 +    public String name() {
   1.220 +        return nullSafe(name);
   1.221 +    }
   1.222 +
   1.223 +    @Override
   1.224 +    public String partName() {
   1.225 +        return nullSafe(partName);
   1.226 +    }
   1.227 +
   1.228 +    @Override
   1.229 +    public String targetNamespace() {
   1.230 +        return nullSafe(targetNamespace);
   1.231 +    }
   1.232 +
   1.233 +    @Override
   1.234 +    public Mode mode() {
   1.235 +        return nullSafe(mode, Mode.IN);
   1.236 +    }
   1.237 +
   1.238 +    @Override
   1.239 +    public boolean header() {
   1.240 +        return nullSafe(header, false);
   1.241 +    }
   1.242 +
   1.243 +    @Override
   1.244 +    public Class<? extends Annotation> annotationType() {
   1.245 +        return javax.jws.WebParam.class;
   1.246 +    }
   1.247 +}

mercurial