View Javadoc

1   /*$Id: MetadataService.java,v 1.2 2004/07/01 11:16:22 nw Exp $
2    * Created on 21-May-2004
3    *
4    * Copyright (C) AstroGrid. All rights reserved.
5    *
6    * This software is published under the terms of the AstroGrid 
7    * Software License version 1.2, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
9    *
10  **/
11  package org.astrogrid.applications.manager;
12  
13  import org.astrogrid.applications.CeaException;
14  
15  /*** Interface into the meta-data / decscription / registry entries part of a cea server.
16   *  - base of all description for this server.
17   * @author Noel Winstanley nw@jb.man.ac.uk 21-May-2004
18   *
19   */
20  public interface MetadataService {
21   
22      /*** return the entry to lodge in the registry
23       * 
24       * @return stringified xmldocument of a VODescription 
25       * @throws CeaException
26       */
27      public String returnRegistryEntry() throws CeaException;
28  
29  
30  }
31  
32  
33  /* 
34  $Log: MetadataService.java,v $
35  Revision 1.2  2004/07/01 11:16:22  nw
36  merged in branch
37  nww-itn06-componentization
38  
39  Revision 1.1.2.2  2004/07/01 01:42:46  nw
40  final version, before merge
41  
42  Revision 1.1.2.1  2004/06/17 09:21:23  nw
43  finished all major functionality additions to core
44  
45  Revision 1.1.2.1  2004/06/14 08:56:58  nw
46  factored applications into sub-projects,
47  got packaging of wars to work again
48  
49  Revision 1.1.2.1  2004/05/28 10:23:10  nw
50  checked in early, broken version - but it builds and tests (fail)
51   
52  */