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

Apache CXF example source code file (RecursiveUnion.idl)

This example Apache CXF source code file (RecursiveUnion.idl) 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

basictest, forwardseqtest, forwardseqtest, forwardseqtestseq, forwardseqtestseq, forwardtest, forwardtest, nestedtestinner, nestedtestouter, nestedtestouter, nestedtestouterseq, testinterface

The Apache CXF RecursiveUnion.idl source code

union BasicTest switch(short) {
    case 1:
        long case1;
    case 2:
        sequence<BasicTest> case2;
    default:
        string caseDef;
};

union ForwardTest;
union ForwardTest switch(short) {
    case 1:
        long case1;
    case 2:
        sequence<ForwardTest> case2;
    default:
        string caseDef;
};

union ForwardSeqTest;
typedef sequence<ForwardSeqTest> ForwardSeqTestSeq;
union ForwardSeqTest switch(short) {
    case 1:
        long case1;
    case 2:
        ForwardSeqTestSeq case2;
    default:
        string caseDef;
};

union NestedTestOuter;
typedef sequence<NestedTestOuter> NestedTestOuterSeq;
union NestedTestOuter switch(short) {
    case 1:
        long case1;
    case 2:
        struct NestedTestInner {
            string member1;
            NestedTestOuterSeq member2;
        } case2;
    default:
        string caseDef;
};

interface TestInterface {
};

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF RecursiveUnion.idl 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.