1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.astrogrid.applications.description.registry;
15
16 import org.astrogrid.registry.client.admin.RegistryAdminService;
17
18 /***
19 * Configuration interface to find the registry Admin service.
20 * @author Paul Harrison (pah@jb.man.ac.uk) 29-Mar-2004
21 * @version $Name: HEAD $
22 * @since iteration5
23 */
24 public interface RegistryAdminLocator {
25
26 /*** find the registry admin service
27 * @return a registry admin delegate for interacting with the service
28 * @throws Exception if anything goes wrong.
29 */
30 public RegistryAdminService getClient() throws Exception;
31
32 }