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