KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > routing > Router


1 package org.objectweb.celtix.routing;
2
3 import javax.wsdl.Definition;
4 import org.objectweb.celtix.routing.configuration.RouteType;
5
6
7 public interface Router {
8
9     Definition getWSDLModel();
10
11     RouteType getRoute();
12
13     void init();
14
15     void publish();
16 }
17
Popular Tags