View Javadoc

1   /*
2    * $Id: RegistryAdminLocator.java,v 1.3 2004/07/26 10:21:47 nw Exp $
3    * 
4    * Created on 29-Mar-2004 by Paul Harrison (pah@jb.man.ac.uk)
5    *
6    * Copyright 2004 AstroGrid. All rights reserved.
7    *
8    * This software is published under the terms of the AstroGrid 
9    * Software License version 1.2, a copy of which has been included 
10   * with this distribution in the LICENSE.txt file.  
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  }