You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2008/12/05 04:52:29 UTC

svn commit: r723572 - /webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/Release.java

Author: kstam
Date: Thu Dec  4 19:52:29 2008
New Revision: 723572

URL: http://svn.apache.org/viewvc?rev=723572&view=rev
Log:
JUDDI-160 adding place for release info

Added:
    webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/Release.java

Added: webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/Release.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/Release.java?rev=723572&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/Release.java (added)
+++ webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/Release.java Thu Dec  4 19:52:29 2008
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2001-2008 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.juddi;
+
+/**
+ * @author Steve Viens (sviens@apache.org)
+ */
+public class Release 
+{
+  private static final String REGISTRY_VERSION = "3.0alpha";
+  private static final String UDDI_VERSION = "3.0";
+  
+  // Made private to avoid instantiation
+  private Release()
+  {
+  }
+  
+  public static String getRegistryVersion()
+  {
+    return REGISTRY_VERSION;
+  }
+  
+  public static String getUDDIVersion()
+  {
+    return UDDI_VERSION;
+  }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org