src/share/jaxws_classes/com/sun/xml/internal/ws/client/SCAnnotations.java

Fri, 04 Oct 2013 16:21:34 +0100

author
mkos
date
Fri, 04 Oct 2013 16:21:34 +0100
changeset 408
b0610cd08440
parent 368
0989ad8c0860
child 637
9c07ef4934dd
permissions
-rw-r--r--

8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
Reviewed-by: chegar

     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.xml.internal.ws.client;
    28 import com.sun.xml.internal.ws.util.JAXWSUtils;
    30 import javax.xml.namespace.QName;
    31 import javax.xml.ws.Service;
    32 import javax.xml.ws.WebEndpoint;
    33 import javax.xml.ws.WebServiceClient;
    34 import javax.xml.ws.WebServiceException;
    35 import java.io.IOException;
    36 import java.lang.reflect.Method;
    37 import java.security.AccessController;
    38 import java.security.PrivilegedAction;
    39 import java.util.ArrayList;
    41 /**
    42  * Represents parsed {@link WebServiceClient} and {@link WebEndpoint}
    43  * annotations on a {@link Service}-derived class.
    44  *
    45  * @author Kohsuke Kawaguchi
    46  */
    47 final class SCAnnotations {
    48     SCAnnotations(final Class<?> sc) {
    49         AccessController.doPrivileged(new PrivilegedAction<Void>() {
    50             @Override
    51             public Void run() {
    52                 WebServiceClient wsc =sc.getAnnotation(WebServiceClient.class);
    53                 if(wsc==null) {
    54                     throw new WebServiceException("Service Interface Annotations required, exiting...");
    55                 }
    57                 String tns = wsc.targetNamespace();
    58                 try {
    59                     JAXWSUtils.getFileOrURL(wsc.wsdlLocation());
    60                 } catch (IOException e) {
    61                     // TODO: report a reasonable error message
    62                     throw new WebServiceException(e);
    63                 }
    65                 for (Method method : sc.getDeclaredMethods()) {
    66                     WebEndpoint webEndpoint = method.getAnnotation(WebEndpoint.class);
    67                     if (webEndpoint != null) {
    68                         String endpointName = webEndpoint.name();
    69                         QName portQName = new QName(tns, endpointName);
    70                         portQNames.add(portQName);
    71                     }
    72                     Class<?> seiClazz = method.getReturnType();
    73                     if (seiClazz!=void.class) {
    74                         classes.add(seiClazz);
    75                     }
    76                 }
    78                 return null;
    79             }
    80         });
    81     }
    83     final ArrayList<QName> portQNames = new ArrayList<QName>();
    84     final ArrayList<Class> classes = new ArrayList<Class>();
    85 }

mercurial