| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ServiceExportManager |
|
| 1.0;1 |
| 1 | package org.kuali.rice.ksb.messaging.serviceexporters; | |
| 2 | ||
| 3 | import javax.xml.namespace.QName; | |
| 4 | ||
| 5 | import org.kuali.rice.ksb.api.bus.ServiceDefinition; | |
| 6 | ||
| 7 | /** | |
| 8 | * Managers service endpoints that are exported from this application | |
| 9 | * @author ewestfal | |
| 10 | * | |
| 11 | */ | |
| 12 | public interface ServiceExportManager { | |
| 13 | ||
| 14 | Object getService(QName serviceName); | |
| 15 | ||
| 16 | QName getServiceName(String url); | |
| 17 | ||
| 18 | void exportService(ServiceDefinition serviceDefinition); | |
| 19 | ||
| 20 | void removeService(QName serviceName); | |
| 21 | ||
| 22 | } |