summaryrefslogtreecommitdiffstats
path: root/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ServiceTestComponent.java
blob: f5c03ef281587f6b5cdb77b14fb33041ebae1557 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.apache.tuscany.sca.binding.erlang.testing;

public interface ServiceTestComponent {

    String sayHello(String arg1, String arg2);
    
    String[] sayHellos() throws Exception;
    
    StructuredTuple passComplexArgs(StructuredTuple arg1, String[] arg2);
    
}