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

Apache CXF example source code file (BankWS-corba.idl)

This example Apache CXF source code file (BankWS-corba.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

account, account, bank, bank, object, object

The Apache CXF BankWS-corba.idl source code

interface Account {
    float
    get_balance();
    void
    deposit(
        in float addition
    );
};
interface Bank {
    ::Account
    create_account(
        in string account_name
    );
    Object
    create_epr_account(
        in string account_name
    );
    ::Account
    get_account(
        in string account_name
    );
    Object
    get_epr_account(
        in string account_name
    );
    Object
    get_account_epr_with_no_use_attribute(
        in string account_name
    );
    void
    find_account(
        inout any account_details
    );
    void
    remove_account(
        in string account_name
    );
};

Other Apache CXF examples (source code examples)

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