[jboss-cvs] JBossAS SVN: r87170 - projects/jboss-osgi/trunk/runtime/spi/src/main/java/org/jboss/osgi/spi.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Apr 11 17:03:48 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-04-11 17:03:48 -0400 (Sat, 11 Apr 2009)
New Revision: 87170

Modified:
   projects/jboss-osgi/trunk/runtime/spi/src/main/java/org/jboss/osgi/spi/Constants.java
Log:
Make costants public

Modified: projects/jboss-osgi/trunk/runtime/spi/src/main/java/org/jboss/osgi/spi/Constants.java
===================================================================
--- projects/jboss-osgi/trunk/runtime/spi/src/main/java/org/jboss/osgi/spi/Constants.java	2009-04-11 20:58:27 UTC (rev 87169)
+++ projects/jboss-osgi/trunk/runtime/spi/src/main/java/org/jboss/osgi/spi/Constants.java	2009-04-11 21:03:48 UTC (rev 87170)
@@ -21,11 +21,11 @@
  */
 package org.jboss.osgi.spi;
 
+//$Id$
+
 import org.osgi.framework.Bundle;
 import org.osgi.service.log.LogService;
 
-// $Id$
-
 /**
  * JBossOSGi Constants
  * 
@@ -35,7 +35,7 @@
 public abstract class Constants 
 {
    /** The JBossOSGi domain 'jboss.osgi' */
-   final String DOMAIN_NAME = "jboss.osgi";
+   public final static String DOMAIN_NAME = "jboss.osgi";
    
    /**
     * If set to 'true' bundles can be deployed in any order. Deployed bundle will get started when their dependencies can be resolved.
@@ -43,7 +43,7 @@
     * 
     * The default is 'true' 
     */
-   final String PROPERTY_DEFERRED_START = "org.jboss.osgi.deferred.start";
+   public final static String PROPERTY_DEFERRED_START = "org.jboss.osgi.deferred.start";
 
    /**
     * Return the string representation of a bundle state




More information about the jboss-cvs-commits mailing list