1
2
3
4
5
6
7 package org.mule.module.ibeans.annotations;
8
9 import java.net.UnknownHostException;
10
11 import org.ibeans.annotation.Call;
12 import org.ibeans.annotation.param.UriParam;
13 import org.ibeans.api.ExceptionListenerAware;
14
15
16
17
18 public interface TestExceptionIBean extends ExceptionListenerAware
19 {
20 @Call(uri = "http://doesnotexist.bom?param={foo}")
21 public String doSomething(@UriParam("foo") String foo);
22
23 @Call(uri = "http://doesnotexist.bom")
24 public String doSomethingElse() throws UnknownHostException;
25 }