summaryrefslogtreecommitdiffstats
path: root/sandbox/wjaniszewski/binding-erlang-runtime/src/test/java/org/apache/tuscany/sca/binding/erlang/testing/ServiceInterface.java
blob: 33afcfb53db14c0422f83a49fc8169a02af4938f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
}