jaxws/src/share/classes/javax/jws/WebService.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.Target;
474761f14bca Initial load
duke
parents:
diff changeset
    32
import java.lang.annotation.Retention;
474761f14bca Initial load
duke
parents:
diff changeset
    33
import java.lang.annotation.RetentionPolicy;
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
 * Marks a Java class as implementing a Web Service, or a Java interface as defining a Web Service interface.
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.TYPE})
474761f14bca Initial load
duke
parents:
diff changeset
    43
public @interface WebService {
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 name of the Web Service.
474761f14bca Initial load
duke
parents:
diff changeset
    47
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    48
     * Used as the name of the wsdl:portType when mapped to WSDL 1.1.
474761f14bca Initial load
duke
parents:
diff changeset
    49
     *
474761f14bca Initial load
duke
parents:
diff changeset
    50
     * @specdefault The simple name of the Java class or interface.
474761f14bca Initial load
duke
parents:
diff changeset
    51
     */
474761f14bca Initial load
duke
parents:
diff changeset
    52
    String name() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    53
474761f14bca Initial load
duke
parents:
diff changeset
    54
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    55
     * If the @WebService.targetNamespace annotation is on a service endpoint interface, the targetNamespace is used
474761f14bca Initial load
duke
parents:
diff changeset
    56
     * for the namespace for the wsdl:portType (and associated XML elements).
474761f14bca Initial load
duke
parents:
diff changeset
    57
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    58
     * If the @WebService.targetNamespace annotation is on a service implementation bean that does NOT reference a
474761f14bca Initial load
duke
parents:
diff changeset
    59
     * service endpoint interface (through the endpointInterface attribute), the targetNamespace is used for both the
474761f14bca Initial load
duke
parents:
diff changeset
    60
     * wsdl:portType and the wsdl:service (and associated XML elements).
474761f14bca Initial load
duke
parents:
diff changeset
    61
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    62
     * If the @WebService.targetNamespace annotation is on a service implementation bean that does reference a service
474761f14bca Initial load
duke
parents:
diff changeset
    63
     * endpoint interface (through the endpointInterface attribute), the targetNamespace is used for only the
474761f14bca Initial load
duke
parents:
diff changeset
    64
     * wsdl:service (and associated XML elements).
474761f14bca Initial load
duke
parents:
diff changeset
    65
     *
474761f14bca Initial load
duke
parents:
diff changeset
    66
     * @specdefault Implementation-defined, as described in JAX-WS 2.0 [5], section 3.2.
474761f14bca Initial load
duke
parents:
diff changeset
    67
     */
474761f14bca Initial load
duke
parents:
diff changeset
    68
    String targetNamespace() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    69
474761f14bca Initial load
duke
parents:
diff changeset
    70
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    71
     * The service name of the Web Service.
474761f14bca Initial load
duke
parents:
diff changeset
    72
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    73
     * Used as the name of the wsdl:service when mapped to WSDL 1.1.
474761f14bca Initial load
duke
parents:
diff changeset
    74
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    75
     * <i>This member-value is not allowed on endpoint interfaces.</i>
474761f14bca Initial load
duke
parents:
diff changeset
    76
     *
474761f14bca Initial load
duke
parents:
diff changeset
    77
     * @specdefault The simple name of the Java class + "Service".
474761f14bca Initial load
duke
parents:
diff changeset
    78
     */
474761f14bca Initial load
duke
parents:
diff changeset
    79
    String serviceName() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    80
474761f14bca Initial load
duke
parents:
diff changeset
    81
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    82
     * The port name of the Web Service.
474761f14bca Initial load
duke
parents:
diff changeset
    83
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    84
     * Used as the name of the wsdl:port when mapped to WSDL 1.1.
474761f14bca Initial load
duke
parents:
diff changeset
    85
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    86
     * <i>This member-value is not allowed on endpoint interfaces.</i>
474761f14bca Initial load
duke
parents:
diff changeset
    87
     *
474761f14bca Initial load
duke
parents:
diff changeset
    88
     * @specdefault {@code @WebService.name}+"Port".
474761f14bca Initial load
duke
parents:
diff changeset
    89
     *
474761f14bca Initial load
duke
parents:
diff changeset
    90
     * @since 2.0
474761f14bca Initial load
duke
parents:
diff changeset
    91
     */
474761f14bca Initial load
duke
parents:
diff changeset
    92
    String portName() default "";
474761f14bca Initial load
duke
parents:
diff changeset
    93
474761f14bca Initial load
duke
parents:
diff changeset
    94
    /**
474761f14bca Initial load
duke
parents:
diff changeset
    95
     * The location of a pre-defined WSDL describing the service.
474761f14bca Initial load
duke
parents:
diff changeset
    96
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
    97
     * The wsdlLocation is a URL (relative or absolute) that refers to a pre-existing WSDL file.  The presence of a
474761f14bca Initial load
duke
parents:
diff changeset
    98
     * wsdlLocation value indicates that the service implementation bean is implementing a pre-defined WSDL contract.
474761f14bca Initial load
duke
parents:
diff changeset
    99
     * The JSR-181 tool MUST provide feedback if the service implementation bean is inconsistent with the portType and
474761f14bca Initial load
duke
parents:
diff changeset
   100
     * bindings declared in this WSDL. Note that a single WSDL file might contain multiple portTypes and multiple
474761f14bca Initial load
duke
parents:
diff changeset
   101
     * bindings.  The annotations on the service implementation bean determine the specific portType and bindings that
474761f14bca Initial load
duke
parents:
diff changeset
   102
     * correspond to the Web Service.
474761f14bca Initial load
duke
parents:
diff changeset
   103
     */
474761f14bca Initial load
duke
parents:
diff changeset
   104
    String wsdlLocation() default "";
474761f14bca Initial load
duke
parents:
diff changeset
   105
474761f14bca Initial load
duke
parents:
diff changeset
   106
    /**
474761f14bca Initial load
duke
parents:
diff changeset
   107
     * The complete name of the service endpoint interface defining the service's abstract Web Service contract.
474761f14bca Initial load
duke
parents:
diff changeset
   108
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
   109
     * This annotation allows the developer to separate the interface contract from the implementation.  If this
474761f14bca Initial load
duke
parents:
diff changeset
   110
     * annotation is present, the service endpoint interface is used to determine the abstract WSDL contract (portType
474761f14bca Initial load
duke
parents:
diff changeset
   111
     * and bindings). The service endpoint interface MAY include JSR-181 annotations to customize the mapping from
474761f14bca Initial load
duke
parents:
diff changeset
   112
     * Java to WSDL.
474761f14bca Initial load
duke
parents:
diff changeset
   113
     * <br>
474761f14bca Initial load
duke
parents:
diff changeset
   114
     * The service implementation bean MAY implement the service endpoint interface, but is not REQUIRED to do so.
474761f14bca Initial load
duke
parents:
diff changeset
   115
     * <br>
474761f14bca Initial load
duke
parents:
diff changeset
   116
     * If this member-value is not present, the Web Service contract is generated from annotations on the service
474761f14bca Initial load
duke
parents:
diff changeset
   117
     * implementation bean.  If a service endpoint interface is required by the target environment, it will be
474761f14bca Initial load
duke
parents:
diff changeset
   118
     * generated into an implementation-defined package with an implementation- defined name
474761f14bca Initial load
duke
parents:
diff changeset
   119
     * <p>
474761f14bca Initial load
duke
parents:
diff changeset
   120
     * <i>This member-value is not allowed on endpoint interfaces.</i>
474761f14bca Initial load
duke
parents:
diff changeset
   121
     */
474761f14bca Initial load
duke
parents:
diff changeset
   122
    String endpointInterface() default "";
474761f14bca Initial load
duke
parents:
diff changeset
   123
};