alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (DocLitWrappedCodeFirstService.java)

This example Apache CXF source code file (DocLitWrappedCodeFirstService.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

cxf2411base, doclitwrappedcodefirstservice, foo, holder, holder, list, string, string, util, webmethod, webmethod, webparam, webresult, wsdldocumentation, wsdldocumentation, xml

The Apache CXF DocLitWrappedCodeFirstService.java source code

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.cxf.systest.jaxws;

import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.Vector;

import javax.jws.Oneway;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.ws.Holder;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;

import org.apache.cxf.annotations.FastInfoset;
import org.apache.cxf.annotations.GZIP;
import org.apache.cxf.annotations.WSDLDocumentation;
import org.apache.cxf.annotations.WSDLDocumentationCollection;
import org.apache.cxf.message.Exchange;
import org.apache.cxf.systest.jaxws.types.Bar;

@WebService(name = "DocLitWrappedCodeFirstService",
            targetNamespace = "http://cxf.apache.org/systest/jaxws/DocLitWrappedCodeFirstService")
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT,
             use = SOAPBinding.Use.LITERAL)
@WSDLDocumentationCollection(
    {
        @WSDLDocumentation("DocLitWrappedCodeFirstService interface"),
        @WSDLDocumentation(value = "DocLitWrappedCodeFirstService top level doc", 
                           placement = WSDLDocumentation.Placement.TOP),   
        @WSDLDocumentation(value = "DocLitWrappedCodeFirstService binding doc", 
                           placement = WSDLDocumentation.Placement.BINDING),   
        @WSDLDocumentation(value = "DocLitWrappedCodeFirstService service/port doc", 
                           placement = WSDLDocumentation.Placement.SERVICE_PORT)   
    }
)
@GZIP
@FastInfoset
public interface DocLitWrappedCodeFirstService {

    @Oneway
    @WebMethod
    void doOneWay();
    
    @WebMethod
    String[] arrayOutput();

    @WebMethod
    String arrayInput(
            @WebParam(name = "input") String[] inputs);

    @WebMethod
    Vector<String> listOutput();
    
    @WebMethod 
    String echoStringNotReallyAsync(String s);
    
    @WebMethod
    int[] echoIntArray(int[] ar, Exchange ex);
    
    @WebMethod
    @WebResult(partName = "parameters")
    String listInput(List<String> inputs);

    @WebMethod
    String multiListInput(List<String> inputs1, List inputs2, String x, int y);
    
    @WebMethod
    @WSDLDocumentationCollection(
        {
            @WSDLDocumentation("multiInOut doc"),
            @WSDLDocumentation(value = "multiInOut Input doc", 
                               placement = WSDLDocumentation.Placement.PORT_TYPE_OPERATION_INPUT),   
            @WSDLDocumentation(value = "multiInOut Output doc", 
                               placement = WSDLDocumentation.Placement.PORT_TYPE_OPERATION_OUTPUT),   
            @WSDLDocumentation(value = "multiInOut InputMessage doc", 
                               placement = WSDLDocumentation.Placement.INPUT_MESSAGE),   
            @WSDLDocumentation(value = "multiInOut OutputMessage doc", 
                               placement = WSDLDocumentation.Placement.OUTPUT_MESSAGE),   
            @WSDLDocumentation(value = "multiInOut binding doc",
                               placement = WSDLDocumentation.Placement.BINDING_OPERATION),
            @WSDLDocumentation(value = "multiInOut binding Input doc", 
                               placement = WSDLDocumentation.Placement.BINDING_OPERATION_INPUT),   
            @WSDLDocumentation(value = "multiInOut binding Output doc", 
                               placement = WSDLDocumentation.Placement.BINDING_OPERATION_OUTPUT)   
        }
    )
    String multiInOut(@WebParam(mode = WebParam.Mode.OUT)
                      Holder<String> a,
                      @WebParam(mode = WebParam.Mode.INOUT)
                      Holder<String> b,
                      @WebParam(mode = WebParam.Mode.OUT)
                      Holder<String> c,
                      @WebParam(mode = WebParam.Mode.INOUT)
                      Holder<String> d,
                      @WebParam(mode = WebParam.Mode.INOUT)
                      Holder<String> e,
                      @WebParam(mode = WebParam.Mode.OUT)
                      Holder<String> f,
                      @WebParam(mode = WebParam.Mode.OUT)
                      Holder<String> g);
    
    
    @WebMethod
    List<Foo> listObjectOutput();

    @WebMethod
    boolean listObjectIn(@WebParam(mode = WebParam.Mode.INOUT)
                         Holder<List foos);

    
    @WebMethod
    List<Foo[]> listObjectArrayOutput();
    
    String outOnly(@WebParam(mode = WebParam.Mode.OUT) Holder<String> out1, 
                   @WebParam(mode = WebParam.Mode.OUT) Holder<String> out2);
    
    @WebMethod
    @WSDLDocumentationCollection({
        @WSDLDocumentation(value = "fault message doc",
                           placement = WSDLDocumentation.Placement.FAULT_MESSAGE,
                           faultClass = CustomException.class),   
        @WSDLDocumentation(value = "fault binding doc",
                           placement = WSDLDocumentation.Placement.BINDING_OPERATION_FAULT,
                           faultClass = CustomException.class),   
        @WSDLDocumentation(value = "fault porttype doc",
                           placement = WSDLDocumentation.Placement.PORT_TYPE_OPERATION_FAULT,
                           faultClass = CustomException.class)   
        }
    )
    int throwException(int i) 
        throws ServiceTestFault,
        CustomException,
        ComplexException;
    
    @RequestWrapper(localName = "echoIntX")
    @ResponseWrapper(localName = "echoIntXResponse")
    int echoIntDifferentWrapperName(int i);
    
    @WebMethod
    @WebResult(targetNamespace = "http://cxf.apache.org/systest/jaxws/DocLitWrappedCodeFirstService",
               name = "result")
    @RequestWrapper(className = "org.apache.cxf.systest.jaxws.Echo")
    @ResponseWrapper(className = "org.apache.cxf.systest.jaxws.EchoResponse")
    String echo(@WebParam(targetNamespace = 
            "http://cxf.apache.org/systest/jaxws/DocLitWrappedCodeFirstService2", 
                          name = "String_1")
                        String msg);

    Bar createBar(String val);
    
    static class Foo  {
        String name;
        
        public Foo() {
        }
        
        public void setName(String n) {
            if ("NoName".equals(n)) {
                throw new IllegalArgumentException(n + " is not a valid name");
            }
            name = n;
        }
        public void setNameIgnore(String n) {
            name = n;
        }
        public String getName() {
            return name;
        }
    }
    
    @WebResult(name = "return")
    String doBug2692(@WebParam(name = "name", header = true) String name);

    
    Set<Foo> getFooSet();
    
    Foo modifyFoo(Foo foo);
    
    @RequestWrapper(className = "org.apache.cxf.systest.jaxws.DocLitWrappedCodeFirstService$DoFooListRequest")
    @WebMethod(operationName = "doFooList")
    String doFooList(@WebParam(name = "dbRef") List<Foo> fooList);
    
    
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "doFooList", propOrder = { "dbReves" })
    public static class DoFooListRequest {
        @XmlElement(name = "dbRef", required = true)
        protected List<Foo> dbReves = new ArrayList();

        public List<Foo> getDbReves() {
            return dbReves;
        }
    }
    
    CXF2411Result<CXF2411SubClass> doCXF2411();
    
    public class CXF2411Result<T extends CXF2411Base> {
        private T[] content;
        public T[] getContent() {
            return content;
        }
        public void setContent(T[] content) {
            this.content = content;
        }
    }

    public class CXF2411Base {
    }

    public class CXF2411SubClass extends CXF2411Base {
    }
}

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF DocLitWrappedCodeFirstService.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.