This project has retired. For details please refer to its Attic page.
Release.java

Release.java

  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. public class Release {
  20.    
  21.     private static final String UDDI_VERSION = "3.0";
  22.     private static final String JAR_NAME = "juddi-core";
  23.     private static String registryVersion = null;
  24.    
  25.     private Release () {
  26.     }

  27.     public static String getRegistryVersion() {
  28.         if (registryVersion == null) {
  29.             registryVersion = org.apache.juddi.v3.client.Release.getVersionFromManifest(JAR_NAME);
  30.         }
  31.         return registryVersion;
  32.        
  33.     }

  34.     public static String getUDDIVersion() {
  35.         return UDDI_VERSION;    
  36.     }
  37.    
  38.    
  39. }