jaxws/src/share/classes/javax/jws/WebResult.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 the return value to a WSDL 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.METHOD})
474761f14bca Initial load
duke
parents:
diff changeset
    43
    public @interface WebResult
474761f14bca Initial load
duke
parents:
diff changeset
    44
{
474761f14bca Initial load
duke
parents:
diff changeset
    45
474761f14bca Initial load
duke
parents:
diff changeset
    46
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    47
     * Name of return value.
474761f14bca Initial load
duke
parents:
diff changeset
    48
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    49
     * If the operation is rpc style and @WebResult.partName has not been specified, this is the name of the wsdl:part
474761f14bca Initial load
duke
parents:
diff changeset
    50
     * representing the return value.
474761f14bca Initial load
duke
parents:
diff changeset
    51
     * <br>
474761f14bca Initial load
duke
parents:
diff changeset
    52
     * If the operation is document style or the return value maps to a header, this is the local name of the XML
474761f14bca Initial load
duke
parents:
diff changeset
    53
     * element representing the return value.
474761f14bca Initial load
duke
parents:
diff changeset
    54
     *
474761f14bca Initial load
duke
parents:
diff changeset
    55
     * @specdefault
474761f14bca Initial load
duke
parents:
diff changeset
    56
     *   If the operation is document style and the parameter style is BARE, {@code @WebParam.operationName}+"Response".<br>
474761f14bca Initial load
duke
parents:
diff changeset
    57
     *   Otherwise, "return."
474761f14bca Initial load
duke
parents:
diff changeset
    58
     */
474761f14bca Initial load
duke
parents:
diff changeset
    59
    String name() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    60
474761f14bca Initial load
duke
parents:
diff changeset
    61
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    62
     * The name of the wsdl:part representing this return value.
474761f14bca Initial load
duke
parents:
diff changeset
    63
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    64
     * 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
    65
     * is BARE.
474761f14bca Initial load
duke
parents:
diff changeset
    66
     *
474761f14bca Initial load
duke
parents:
diff changeset
    67
     * @specdefault {@code @WebResult.name}
474761f14bca Initial load
duke
parents:
diff changeset
    68
     *
474761f14bca Initial load
duke
parents:
diff changeset
    69
     * @since 2.0
474761f14bca Initial load
duke
parents:
diff changeset
    70
     */
474761f14bca Initial load
duke
parents:
diff changeset
    71
    String partName() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    72
474761f14bca Initial load
duke
parents:
diff changeset
    73
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    74
     * The XML namespace for the return value.
474761f14bca Initial load
duke
parents:
diff changeset
    75
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    76
     * Only used if the operation is document style or the return value maps to a header.
474761f14bca Initial load
duke
parents:
diff changeset
    77
     * If the target namespace is set to "", this represents the empty namespace.
474761f14bca Initial load
duke
parents:
diff changeset
    78
     *
474761f14bca Initial load
duke
parents:
diff changeset
    79
     * @specdefault
474761f14bca Initial load
duke
parents:
diff changeset
    80
     *   If the operation is document style, the parameter style is WRAPPED, and the return value does not map to a
474761f14bca Initial load
duke
parents:
diff changeset
    81
     *   header, the empty namespace.<br>
474761f14bca Initial load
duke
parents:
diff changeset
    82
     *   Otherwise, the targetNamespace for the Web Service.
474761f14bca Initial load
duke
parents:
diff changeset
    83
     */
474761f14bca Initial load
duke
parents:
diff changeset
    84
    String targetNamespace() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    85
474761f14bca Initial load
duke
parents:
diff changeset
    86
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    87
     * If true, the result is pulled from a message header rather then the message body.
474761f14bca Initial load
duke
parents:
diff changeset
    88
     *
474761f14bca Initial load
duke
parents:
diff changeset
    89
     * @since 2.0
474761f14bca Initial load
duke
parents:
diff changeset
    90
     */
474761f14bca Initial load
duke
parents:
diff changeset
    91
    boolean header() default false;
474761f14bca Initial load
duke
parents:
diff changeset
    92
}