View Javadoc

1   /*
2    * $Id: Namespaces.java,v 1.2 2005/07/05 08:27:01 clq2 Exp $
3    * 
4    * Created on 02-Apr-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.common.bean.v1;
15  
16  /***
17   * @author Paul Harrison (pah@jb.man.ac.uk) 02-Apr-2004
18   * @version $Name:  $
19   * @since iteration5
20   */
21  public final class Namespaces {
22  
23     /***
24      * 
25      */
26     private Namespaces() {
27     }
28  
29     public final static String VOCEA = "http://www.ivoa.net/xml/CEAService/v0.2";
30     public final static String CEAPD = "http://www.astrogrid.org/schema/AGParameterDefinition/v1";
31     public final static String CEAB="http://www.astrogrid.org/schema/CommonExecutionArchitectureBase/v1" ;
32     public final static String CEATYPES="http://www.astrogrid.org/schema/CEATypes/v1";
33     public final static String CEAIMPL="http://www.astrogrid.org/schema/CEAImplementation/v1";
34     public final static String WORKFLOW="http://www.astrogrid.org/schema/AGWorkflow/v1";
35     public final static String CREDENTIALS = "http://www.astrogrid.org/schema/Credentials/v1";
36     public final static String EXECUTIONRECORD = "http://www.astrogrid.org/schema/ExecutionRecord/v1";
37  
38     //plus some stqndard ivoa ones...
39     
40     public final static String VORESOURCE= "http://www.ivoa.net/xml/VOResource/v0.10";
41     public final static String VODATASERVICE = "http://www.ivoa.net/xml/VODataService/v0.5";
42     public static final String REGINTERFACE = "http://www.ivoa.net/xml/RegistryInterface/v0.1";
43  }