Examples of EndpointInterfaceDescriptionImpl


Examples of org.apache.axis2.jaxws.description.impl.EndpointInterfaceDescriptionImpl

    }
   
    public void testWebMethodOldBehavior3() {

        System.setProperty(MDQConstants.USE_LEGACY_WEB_METHOD_RULES, "true");
        EndpointInterfaceDescriptionImpl testEndpointInterfaceDesc =
            (EndpointInterfaceDescriptionImpl)getEndpointInterfaceDesc(WebMethodLegacyCheck.class);
       
        DescriptionBuilderComposite dbc = DescriptionTestUtils.getServiceDescriptionComposite(testEndpointInterfaceDesc.getEndpointDescription().getServiceDescription());
        dbc.setCorrespondingClass(WebMethodLegacyCheck.class);
        LegacyMethodRetrieverImpl retrive = new LegacyMethodRetrieverImpl(dbc, testEndpointInterfaceDesc);
        Iterator<MethodDescriptionComposite> iter = retrive.retrieveMethods();
        while(iter.hasNext()){
            MethodDescriptionComposite mdc = iter.next();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.