Package org.objectweb.celtix.greeter_control.types

Examples of org.objectweb.celtix.greeter_control.types.FaultDetail


        return "Bonjour";
    }

    public void pingMe() throws PingMeFault {
        LOG.info("Invoking pingMe");
        FaultDetail faultDetail = new FaultDetail();
        faultDetail.setMajor((short)2);
        faultDetail.setMinor((short)1);
        throw new PingMeFault("PingMeFault raised by server", faultDetail);      
    }
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.greeter_control.types.FaultDetail

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.