jaxws/src/share/classes/javax/jws/WebParam.java
author xuelei
Mon, 17 Mar 2008 03:11:29 -0400
changeset 100 01ef29ca378f
parent 8 474761f14bca
permissions -rw-r--r--
6447412: Issue with socket.close() for ssl sockets when poweroff on other system Summary: Support SSL sockets SOLINGER Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
474761f14bca Initial load
duke
parents:
diff changeset
     1
/*
474761f14bca Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
474761f14bca Initial load
duke
parents:
diff changeset
     3
 *
474761f14bca Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
474761f14bca Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
474761f14bca Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.  Sun designates this
474761f14bca Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
474761f14bca Initial load
duke
parents:
diff changeset
     8
 * by Sun in the LICENSE file that accompanied this code.
474761f14bca Initial load
duke
parents:
diff changeset
     9
 *
474761f14bca Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
474761f14bca Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
474761f14bca Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
474761f14bca Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
474761f14bca Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
474761f14bca Initial load
duke
parents:
diff changeset
    15
 *
474761f14bca Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
474761f14bca Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
474761f14bca Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
474761f14bca Initial load
duke
parents:
diff changeset
    19
 *
474761f14bca Initial load
duke
parents:
diff changeset
    20
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
474761f14bca Initial load
duke
parents:
diff changeset
    21
 * CA 95054 USA or visit www.sun.com if you need additional information or
474761f14bca Initial load
duke
parents:
diff changeset
    22
 * have any questions.
474761f14bca Initial load
duke
parents:
diff changeset
    23
 */
474761f14bca Initial load
duke
parents:
diff changeset
    24
474761f14bca Initial load
duke
parents:
diff changeset
    25
/*
474761f14bca Initial load
duke
parents:
diff changeset
    26
 * Copyright (c) 2004 by BEA Systems, Inc. All Rights Reserved.
474761f14bca Initial load
duke
parents:
diff changeset
    27
 */
474761f14bca Initial load
duke
parents:
diff changeset
    28
474761f14bca Initial load
duke
parents:
diff changeset
    29
package javax.jws;
474761f14bca Initial load
duke
parents:
diff changeset
    30
474761f14bca Initial load
duke
parents:
diff changeset
    31
import java.lang.annotation.Retention;
474761f14bca Initial load
duke
parents:
diff changeset
    32
import java.lang.annotation.RetentionPolicy;
474761f14bca Initial load
duke
parents:
diff changeset
    33
import java.lang.annotation.Target;
474761f14bca Initial load
duke
parents:
diff changeset
    34
import java.lang.annotation.ElementType;
474761f14bca Initial load
duke
parents:
diff changeset
    35
474761f14bca Initial load
duke
parents:
diff changeset
    36
/**
474761f14bca Initial load
duke
parents:
diff changeset
    37
 * Customizes the mapping of an individual parameter to a Web Service message part and XML element.
474761f14bca Initial load
duke
parents:
diff changeset
    38
 *
474761f14bca Initial load
duke
parents:
diff changeset
    39
 * @author Copyright (c) 2004 by BEA Systems, Inc. All Rights Reserved.
474761f14bca Initial load
duke
parents:
diff changeset
    40
 */
474761f14bca Initial load
duke
parents:
diff changeset
    41
@Retention(value = RetentionPolicy.RUNTIME)
474761f14bca Initial load
duke
parents:
diff changeset
    42
@Target(value = {ElementType.PARAMETER})
474761f14bca Initial load
duke
parents:
diff changeset
    43
public @interface WebParam {
474761f14bca Initial load
duke
parents:
diff changeset
    44
474761f14bca Initial load
duke
parents:
diff changeset
    45
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    46
     * The direction in which the parameter flows
474761f14bca Initial load
duke
parents:
diff changeset
    47
     */
474761f14bca Initial load
duke
parents:
diff changeset
    48
    public enum Mode {
474761f14bca Initial load
duke
parents:
diff changeset
    49
        IN,
474761f14bca Initial load
duke
parents:
diff changeset
    50
        OUT,
474761f14bca Initial load
duke
parents:
diff changeset
    51
        INOUT
474761f14bca Initial load
duke
parents:
diff changeset
    52
    };
474761f14bca Initial load
duke
parents:
diff changeset
    53
474761f14bca Initial load
duke
parents:
diff changeset
    54
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    55
     * Name of the parameter.
474761f14bca Initial load
duke
parents:
diff changeset
    56
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    57
     * If the operation is rpc style and @WebParam.partName has not been specified, this is name of the wsdl:part
474761f14bca Initial load
duke
parents:
diff changeset
    58
     * representing the parameter.
474761f14bca Initial load
duke
parents:
diff changeset
    59
     * <br>
474761f14bca Initial load
duke
parents:
diff changeset
    60
     * If the operation is document style or the parameter maps to a header, this is the local name of the XML element
474761f14bca Initial load
duke
parents:
diff changeset
    61
     * representing the parameter.
474761f14bca Initial load
duke
parents:
diff changeset
    62
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    63
     * A name MUST be specified if the operation is document style, the parameter style is BARE, and the mode is OUT
474761f14bca Initial load
duke
parents:
diff changeset
    64
     * or INOUT.
474761f14bca Initial load
duke
parents:
diff changeset
    65
     *
474761f14bca Initial load
duke
parents:
diff changeset
    66
     * @specdefault
474761f14bca Initial load
duke
parents:
diff changeset
    67
     *   If the operation is document style and the parameter style is BARE, {@code @WebMethod.operationName}.<br>
474761f14bca Initial load
duke
parents:
diff changeset
    68
     *   Otherwise, argN, where N represents the index of the parameter in the method signature (starting at arg0).
474761f14bca Initial load
duke
parents:
diff changeset
    69
     */
474761f14bca Initial load
duke
parents:
diff changeset
    70
    String name() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    71
474761f14bca Initial load
duke
parents:
diff changeset
    72
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    73
     * The name of the wsdl:part representing this parameter.
474761f14bca Initial load
duke
parents:
diff changeset
    74
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    75
     * This is only used if the operation is rpc style or if the operation is document style and the parameter style
474761f14bca Initial load
duke
parents:
diff changeset
    76
     * is BARE.
474761f14bca Initial load
duke
parents:
diff changeset
    77
     *
474761f14bca Initial load
duke
parents:
diff changeset
    78
     * @specdefault {@code @WebParam.name}
474761f14bca Initial load
duke
parents:
diff changeset
    79
     *
474761f14bca Initial load
duke
parents:
diff changeset
    80
     * @since 2.0
474761f14bca Initial load
duke
parents:
diff changeset
    81
     */
474761f14bca Initial load
duke
parents:
diff changeset
    82
    String partName() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    83
474761f14bca Initial load
duke
parents:
diff changeset
    84
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    85
     * The XML namespace for the parameter.
474761f14bca Initial load
duke
parents:
diff changeset
    86
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    87
     * Only used if the operation is document style or the paramater maps to a header.
474761f14bca Initial load
duke
parents:
diff changeset
    88
     * If the target namespace is set to "", this represents the empty namespace.
474761f14bca Initial load
duke
parents:
diff changeset
    89
     *
474761f14bca Initial load
duke
parents:
diff changeset
    90
     * @specdefault
474761f14bca Initial load
duke
parents:
diff changeset
    91
     *   If the operation is document style, the parameter style is WRAPPED, and the parameter does not map to a
474761f14bca Initial load
duke
parents:
diff changeset
    92
     *   header, the empty namespace.<br>
474761f14bca Initial load
duke
parents:
diff changeset
    93
     *   Otherwise, the targetNamespace for the Web Service.
474761f14bca Initial load
duke
parents:
diff changeset
    94
     */
474761f14bca Initial load
duke
parents:
diff changeset
    95
    String targetNamespace() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    96
474761f14bca Initial load
duke
parents:
diff changeset
    97
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    98
     * The direction in which the parameter is flowing (One of IN, OUT, or INOUT).
474761f14bca Initial load
duke
parents:
diff changeset
    99
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
   100
     * The OUT and INOUT modes may only be specified for parameter types that conform to the definition of Holder types
474761f14bca Initial load
duke
parents:
diff changeset
   101
     * (JAX-WS 2.0 [5], section 2.3.3).  Parameters that are Holder Types MUST be OUT or INOUT.
474761f14bca Initial load
duke
parents:
diff changeset
   102
     *
474761f14bca Initial load
duke
parents:
diff changeset
   103
     * @specdefault
474761f14bca Initial load
duke
parents:
diff changeset
   104
     *   INOUT if a Holder type.<br>
474761f14bca Initial load
duke
parents:
diff changeset
   105
     *   IN if not a Holder type.
474761f14bca Initial load
duke
parents:
diff changeset
   106
     */
474761f14bca Initial load
duke
parents:
diff changeset
   107
    Mode mode() default Mode.IN;
474761f14bca Initial load
duke
parents:
diff changeset
   108
474761f14bca Initial load
duke
parents:
diff changeset
   109
    /**
474761f14bca Initial load
duke
parents:
diff changeset
   110
     * If true, the parameter is pulled from a message header rather then the message body.
474761f14bca Initial load
duke
parents:
diff changeset
   111
     */
474761f14bca Initial load
duke
parents:
diff changeset
   112
    boolean header() default false;
474761f14bca Initial load
duke
parents:
diff changeset
   113
};