Package org.apache.tuscany.sca.binding.ejb.java2idl

Examples of org.apache.tuscany.sca.binding.ejb.java2idl.OperationType


        });
        Iterator i = idlNames.entrySet().iterator();
        while (i.hasNext()) {
            Map.Entry entry = (Map.Entry)i.next();
            Method method = (Method)entry.getKey();
            OperationType operationType = (OperationType)entry.getValue();
            MethodInfo methodInfo = new MethodInfo(method);
            methodInfo.setIDLName(operationType.getIDLName());
            methods.put(method.getName(), methodInfo);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.binding.ejb.java2idl.OperationType

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.