Package org.apache.tuscany.sca.binding.sca.transform

Examples of org.apache.tuscany.sca.binding.sca.transform.WSDLMediateTransformer


        InterfaceContract bindingInterfaceContract = getWSDLBindingInterfaceContract();  
        if (!bindingInterfaceContract.getInterface().isRemotable()) {
          throw new IllegalStateException("This method should only have been called for a remotable interface.");
        }
        Operation wsdlBindingOperation = interfaceContractMapper.map(bindingInterfaceContract.getInterface(), sourceOperation);                       
        return new WSDLMediateTransformer(mediator, sourceOperation, wsdlBindingOperation, targetOperation);               
      } else {
        return new SameDBCopyTransformer(mediator,  sourceOperation, targetOperation);
      }

    }
View Full Code Here


        InterfaceContract bindingInterfaceContract = getWSDLBindingInterfaceContract();  
        if (!bindingInterfaceContract.getInterface().isRemotable()) {
            throw new IllegalStateException("This method should only have been called for a remotable interface.");
        }
        Operation wsdlBindingOperation = interfaceContractMapper.map(bindingInterfaceContract.getInterface(), sourceOperation);                       
        return new WSDLMediateTransformer(mediator, sourceOperation, wsdlBindingOperation, targetOperation);               
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.binding.sca.transform.WSDLMediateTransformer

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.