This project has retired. For details please refer to its Attic page.
Release xref
View Javadoc
1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *      http://www.apache.org/licenses/LICENSE-2.0
8    * 
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
14   */
15  package org.apache.juddi.config;
16  
17  /**
18   * 
19   */
20  public class Release {
21  	
22  	private static final String UDDI_VERSION = "3.0";
23  	private static final String JAR_NAME = "juddi-core";
24  	private static String registryVersion = null;
25     
26  	private Release () {
27  	}
28  
29  	public static String getRegistryVersion() {
30  		if (registryVersion == null) {
31  			registryVersion = org.apache.juddi.v3.client.Release.getVersionFromManifest(JAR_NAME);
32  		}
33  		return registryVersion;
34  		
35  	}
36  
37  	public static String getUDDIVersion() {
38  		return UDDI_VERSION;	
39  	} 
40  	
41  	
42  }