1 /*
2 * $Id: RegistryQueryLocator.java,v 1.2 2005/07/05 08:26:57 clq2 Exp $
3 *
4 * Created on 06-Jun-2005 by Paul Harrison (pharriso@eso.org)
5 * Copyright 2005 ESO. All rights reserved.
6 *
7 * This software is published under the terms of the ESO
8 * Software License, a copy of which has been included
9 * with this distribution in the LICENSE.txt file.
10 *
11 */
12
13 package org.astrogrid.applications.description.registry;
14
15 import org.astrogrid.registry.RegistryException;
16 import org.astrogrid.registry.client.query.RegistryService;
17
18 /***
19 * Abstraction of registry query client factory. For use in dependency injection.
20 * @author Paul Harrison (pharriso@eso.org) 06-Jun-2005
21 * @version $Name: HEAD $
22 * @since initial Coding
23 */
24 public interface RegistryQueryLocator {
25
26 public RegistryService getClient() throws RegistryException;
27
28 }
29
30
31 /*
32 * $Log: RegistryQueryLocator.java,v $
33 * Revision 1.2 2005/07/05 08:26:57 clq2
34 * paul's 559b and 559c for wo/apps and jes
35 *
36 * Revision 1.1.4.1 2005/06/09 08:47:32 pah
37 * result of merging branch cea_pah_559b into HEAD
38 *
39 * Revision 1.1.2.1 2005/06/08 22:10:45 pah
40 * make http applications v10 compliant
41 *
42 */