Package org.apache.hello_world_soap_http.jibx

Examples of org.apache.hello_world_soap_http.jibx.GreetMeFault


    public String greetMe(String me) throws GreetMeFault {
        if ("fault".equals(me)) {
            org.apache.helloworldsoaphttp.jibx.types.GreetMeFaultDetail detail
                = new org.apache.helloworldsoaphttp.jibx.types.GreetMeFaultDetail();
            detail.setGreetMeFaultDetail("Some fault detail");
            throw new GreetMeFault("Fault String", detail);
        }
        LOG.info("Executing operation greetMe");       
        return "Hello " + me;
    }
View Full Code Here

TOP

Related Classes of org.apache.hello_world_soap_http.jibx.GreetMeFault

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.