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

changeset 368
0989ad8c0860
child 374
72e03566f0a6
     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/XmlMTOM.java	Tue Apr 09 14:51:13 2013 +0100
     1.3 @@ -0,0 +1,153 @@
     1.4 +/*
     1.5 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     1.6 + *
     1.7 + * Copyright (c) 2012 Oracle and/or its affiliates. All rights reserved.
     1.8 + *
     1.9 + * The contents of this file are subject to the terms of either the GNU
    1.10 + * General Public License Version 2 only ("GPL") or the Common Development
    1.11 + * and Distribution License("CDDL") (collectively, the "License").  You
    1.12 + * may not use this file except in compliance with the License.  You can
    1.13 + * obtain a copy of the License at
    1.14 + * http://glassfish.java.net/public/CDDL+GPL_1_1.html
    1.15 + * or packager/legal/LICENSE.txt.  See the License for the specific
    1.16 + * language governing permissions and limitations under the License.
    1.17 + *
    1.18 + * When distributing the software, include this License Header Notice in each
    1.19 + * file and include the License file at packager/legal/LICENSE.txt.
    1.20 + *
    1.21 + * GPL Classpath Exception:
    1.22 + * Oracle designates this particular file as subject to the "Classpath"
    1.23 + * exception as provided by Oracle in the GPL Version 2 section of the License
    1.24 + * file that accompanied this code.
    1.25 + *
    1.26 + * Modifications:
    1.27 + * If applicable, add the following below the License Header, with the fields
    1.28 + * enclosed by brackets [] replaced by your own identifying information:
    1.29 + * "Portions Copyright [year] [name of copyright owner]"
    1.30 + *
    1.31 + * Contributor(s):
    1.32 + * If you wish your version of this file to be governed by only the CDDL or
    1.33 + * only the GPL Version 2, indicate your decision by adding "[Contributor]
    1.34 + * elects to include this software in this distribution under the [CDDL or GPL
    1.35 + * Version 2] license."  If you don't indicate a single choice of license, a
    1.36 + * recipient has the option to distribute your version of this file under
    1.37 + * either the CDDL, the GPL Version 2 or to extend the choice of license to
    1.38 + * its licensees as provided above.  However, if you add GPL Version 2 code
    1.39 + * and therefore, elected the GPL Version 2 license, then the option applies
    1.40 + * only if the new code is made subject to such option by the copyright
    1.41 + * holder.
    1.42 + */
    1.43 +package com.oracle.xmlns.internal.webservices.jaxws_databinding;
    1.44 +import javax.xml.bind.annotation.XmlAccessType;
    1.45 +import javax.xml.bind.annotation.XmlAccessorType;
    1.46 +import javax.xml.bind.annotation.XmlAttribute;
    1.47 +import javax.xml.bind.annotation.XmlRootElement;
    1.48 +import javax.xml.bind.annotation.XmlType;
    1.49 +import javax.xml.ws.soap.MTOM;
    1.50 +import java.lang.annotation.Annotation;
    1.51 +
    1.52 +import static com.oracle.xmlns.internal.webservices.jaxws_databinding.Util.nullSafe;
    1.53 +
    1.54 +
    1.55 +/**
    1.56 + * This file was generated by JAXB-RI v2.2.6 and afterwards modified
    1.57 + * to implement appropriate Annotation
    1.58 + *
    1.59 + * <p>Java class for anonymous complex type.
    1.60 + *
    1.61 + * <p>The following schema fragment specifies the expected content contained within this class.
    1.62 + *
    1.63 + * <pre>
    1.64 + * &lt;complexType>
    1.65 + *   &lt;complexContent>
    1.66 + *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    1.67 + *       &lt;attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
    1.68 + *       &lt;attribute name="threshold" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
    1.69 + *     &lt;/restriction>
    1.70 + *   &lt;/complexContent>
    1.71 + * &lt;/complexType>
    1.72 + * </pre>
    1.73 + *
    1.74 + *
    1.75 + */
    1.76 +@XmlAccessorType(XmlAccessType.FIELD)
    1.77 +@XmlType(name = "")
    1.78 +@XmlRootElement(name = "mtom")
    1.79 +public class XmlMTOM implements MTOM {
    1.80 +
    1.81 +    @XmlAttribute(name = "enabled")
    1.82 +    protected Boolean enabled;
    1.83 +    @XmlAttribute(name = "threshold")
    1.84 +    protected Integer threshold;
    1.85 +
    1.86 +    /**
    1.87 +     * Gets the value of the enabled property.
    1.88 +     *
    1.89 +     * @return
    1.90 +     *     possible object is
    1.91 +     *     {@link Boolean }
    1.92 +     *
    1.93 +     */
    1.94 +    public boolean isEnabled() {
    1.95 +        if (enabled == null) {
    1.96 +            return true;
    1.97 +        } else {
    1.98 +            return enabled;
    1.99 +        }
   1.100 +    }
   1.101 +
   1.102 +    /**
   1.103 +     * Sets the value of the enabled property.
   1.104 +     *
   1.105 +     * @param value
   1.106 +     *     allowed object is
   1.107 +     *     {@link Boolean }
   1.108 +     *
   1.109 +     */
   1.110 +    public void setEnabled(Boolean value) {
   1.111 +        this.enabled = value;
   1.112 +    }
   1.113 +
   1.114 +    /**
   1.115 +     * Gets the value of the threshold property.
   1.116 +     *
   1.117 +     * @return
   1.118 +     *     possible object is
   1.119 +     *     {@link Integer }
   1.120 +     *
   1.121 +     */
   1.122 +    public int getThreshold() {
   1.123 +        if (threshold == null) {
   1.124 +            return  0;
   1.125 +        } else {
   1.126 +            return threshold;
   1.127 +        }
   1.128 +    }
   1.129 +
   1.130 +    /**
   1.131 +     * Sets the value of the threshold property.
   1.132 +     *
   1.133 +     * @param value
   1.134 +     *     allowed object is
   1.135 +     *     {@link Integer }
   1.136 +     *
   1.137 +     */
   1.138 +    public void setThreshold(Integer value) {
   1.139 +        this.threshold = value;
   1.140 +    }
   1.141 +
   1.142 +    @Override
   1.143 +    public boolean enabled() {
   1.144 +        return nullSafe(enabled, Boolean.TRUE);
   1.145 +    }
   1.146 +
   1.147 +    @Override
   1.148 +    public int threshold() {
   1.149 +        return nullSafe(threshold, 0);
   1.150 +    }
   1.151 +
   1.152 +    @Override
   1.153 +    public Class<? extends Annotation> annotationType() {
   1.154 +        return MTOM.class;
   1.155 +    }
   1.156 +}

mercurial