[gatein-commits] gatein SVN: r1943 - components/pc/trunk/api/src/main/java/org/gatein/pc/api/info.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Mar 3 10:07:51 EST 2010


Author: chris.laprun at jboss.com
Date: 2010-03-03 10:07:51 -0500 (Wed, 03 Mar 2010)
New Revision: 1943

Modified:
   components/pc/trunk/api/src/main/java/org/gatein/pc/api/info/RuntimeOptionInfo.java
Log:
- Renamed ORG_JBOSS_PORTLETCONTAINER_REMOTABLE to REMOTABLE_RUNTIME_OPTION so that the name of the constant doesn't depend on the value and changed value to org.gatein.pc.remotable.

Modified: components/pc/trunk/api/src/main/java/org/gatein/pc/api/info/RuntimeOptionInfo.java
===================================================================
--- components/pc/trunk/api/src/main/java/org/gatein/pc/api/info/RuntimeOptionInfo.java	2010-03-03 14:45:45 UTC (rev 1942)
+++ components/pc/trunk/api/src/main/java/org/gatein/pc/api/info/RuntimeOptionInfo.java	2010-03-03 15:07:51 UTC (rev 1943)
@@ -1,24 +1,25 @@
 /*
-* JBoss, a division of Red Hat
-* Copyright 2008, Red Hat Middleware, LLC, and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, a division of Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual
+ * contributors as indicated by the @authors tag. See the
+ * copyright.txt in the distribution for a full listing of
+ * individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 
 package org.gatein.pc.api.info;
 
@@ -39,13 +40,13 @@
    String JAVAX_PORTLET_ESCAPE_XML = "javax.portlet.escapeXml";
    String JAVAX_PORTLET_SERVLET_DEFAULT_SESSION_SCOPE = "javax.portlet.servletDefaultSessionScope";
 
-   String ORG_JBOSS_PORTLETCONTAINER_REMOTABLE = "org.jboss.portletcontainer.remotable";
+   String REMOTABLE_RUNTIME_OPTION = "org.gatein.pc.remotable";
 
    Set<String> SUPPORTED_OPTIONS = Collections.unmodifiableSet(Tools.toSet(
       JAVAX_PORTLET_ACTION_SCOPED_REQUEST_ATTRIBUTES,
       JAVAX_PORTLET_ESCAPE_XML,
       JAVAX_PORTLET_SERVLET_DEFAULT_SESSION_SCOPE,
-      ORG_JBOSS_PORTLETCONTAINER_REMOTABLE));
+      REMOTABLE_RUNTIME_OPTION));
 
    String getName();
 



More information about the gatein-commits mailing list