package org.apache.tuscany.sca.binding.erlang.testing; public interface ServiceInterface { String sayHello(String arg1, String arg2); String[] sayHellos() throws Exception; StructuredTuple passComplexArgs(StructuredTuple arg1, String[] arg2); String sayHello() throws Exception; String sayHello(String arg) throws Exception; String sayHello(int arg1, int arg2); void notExistWithException() throws Exception; void notExist(); }