Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ServiceRegistryBootstrapResource |
|
| 1.0;1 |
1 | package org.kuali.rice.ksb.api.registry; | |
2 | ||
3 | import javax.ws.rs.GET; | |
4 | import javax.ws.rs.Path; | |
5 | import javax.ws.rs.Produces; | |
6 | ||
7 | /** | |
8 | * A REST-based service implementation which can be used to bootstrap the | |
9 | * registry and bring it online to look up other services. It essentially | |
10 | * provides REST-based access to a list of ServiceConfigurations that can | |
11 | * be used to load the registry. | |
12 | */ | |
13 | @Path("/") | |
14 | public interface ServiceRegistryBootstrapResource { | |
15 | ||
16 | @GET | |
17 | @Produces("application/xml") | |
18 | RegistryConfigurations getAllSoapServiceRegistryConfigurations(); | |
19 | ||
20 | } |