[jboss-cvs] jboss-seam/src/main/org/jboss/seam/core ...
Gavin King
gavin.king at jboss.com
Fri Nov 24 18:15:18 EST 2006
User: gavin
Date: 06/11/24 18:15:18
Modified: src/main/org/jboss/seam/core
Actor.java ApplicationContext.java
BusinessProcess.java BusinessProcessContext.java
Conversation.java ConversationContext.java
ConversationEntries.java ConversationList.java
ConversationStack.java Dispatcher.java Ejb.java
EventContext.java Events.java Exceptions.java
Expressions.java FacesContext.java
FacesMessages.java FacesPage.java HttpError.java
Init.java Interpolator.java IsUserInRole.java
Jbpm.java Locale.java LocaleSelector.java
ManagedJbpmContext.java Manager.java Messages.java
Microcontainer.java PageContext.java Pageflow.java
Pages.java PersistenceContexts.java PojoCache.java
PooledTask.java PooledTaskInstanceList.java
ProcessInstance.java Redirect.java
ResourceBundle.java SafeActions.java
SessionContext.java Switcher.java TaskInstance.java
TaskInstanceList.java TaskInstanceListForType.java
TimeZone.java TimeZoneSelector.java Transition.java
UiComponent.java UserPrincipal.java Validation.java
Log:
JBSEAM-293 component precedence
Revision Changes Path
1.12 +2 -1 jboss-seam/src/main/org/jboss/seam/core/Actor.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Actor.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Actor.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- Actor.java 19 Nov 2006 18:13:06 -0000 1.11
+++ Actor.java 24 Nov 2006 23:15:17 -0000 1.12
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.HashSet;
@@ -23,7 +24,7 @@
@Name("org.jboss.seam.core.actor")
@Scope(ScopeType.SESSION)
@Intercept(NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(dependencies="org.jboss.seam.core.jbpm", precedence=BUILT_IN)
public class Actor extends AbstractMutable implements Serializable
{
1.5 +4 -1 jboss-seam/src/main/org/jboss/seam/core/ApplicationContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ApplicationContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ApplicationContext.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- ApplicationContext.java 17 Nov 2006 02:01:39 -0000 1.4
+++ ApplicationContext.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,9 +1,11 @@
-//$Id: ApplicationContext.java,v 1.4 2006/11/17 02:01:39 gavin Exp $
+//$Id: ApplicationContext.java,v 1.5 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -19,6 +21,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.applicationContext")
+ at Install(precedence=BUILT_IN)
public class ApplicationContext
{
@Unwrap
1.13 +2 -1 jboss-seam/src/main/org/jboss/seam/core/BusinessProcess.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: BusinessProcess.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/BusinessProcess.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- BusinessProcess.java 19 Nov 2006 18:13:06 -0000 1.12
+++ BusinessProcess.java 24 Nov 2006 23:15:17 -0000 1.13
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
@@ -28,7 +29,7 @@
@Scope(ScopeType.CONVERSATION)
@Name("org.jboss.seam.core.businessProcess")
@Intercept(NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(dependencies="org.jboss.seam.core.jbpm", precedence=BUILT_IN)
public class BusinessProcess extends AbstractMutable implements Serializable {
private Long processId;
1.5 +4 -1 jboss-seam/src/main/org/jboss/seam/core/BusinessProcessContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: BusinessProcessContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/BusinessProcessContext.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- BusinessProcessContext.java 17 Nov 2006 02:01:39 -0000 1.4
+++ BusinessProcessContext.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,9 +1,11 @@
-//$Id: BusinessProcessContext.java,v 1.4 2006/11/17 02:01:39 gavin Exp $
+//$Id: BusinessProcessContext.java,v 1.5 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -18,6 +20,7 @@
*/
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
+ at Install(precedence=BUILT_IN)
@Name("org.jboss.seam.core.businessProcessContext")
public class BusinessProcessContext
{
1.30 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Conversation.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Conversation.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Conversation.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- Conversation.java 17 Nov 2006 07:12:55 -0000 1.29
+++ Conversation.java 24 Nov 2006 23:15:17 -0000 1.30
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
@@ -8,6 +9,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
import org.jboss.seam.annotations.FlushModeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -24,6 +26,7 @@
*/
@Scope(ScopeType.CONVERSATION)
@Name("org.jboss.seam.core.conversation")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class Conversation implements Serializable {
1.5 +4 -1 jboss-seam/src/main/org/jboss/seam/core/ConversationContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConversationContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationContext.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- ConversationContext.java 17 Nov 2006 02:01:39 -0000 1.4
+++ ConversationContext.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,9 +1,11 @@
-//$Id: ConversationContext.java,v 1.4 2006/11/17 02:01:39 gavin Exp $
+//$Id: ConversationContext.java,v 1.5 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -18,6 +20,7 @@
*/
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
+ at Install(precedence=BUILT_IN)
@Name("org.jboss.seam.core.conversationContext")
public class ConversationContext
{
1.4 +3 -0 jboss-seam/src/main/org/jboss/seam/core/ConversationEntries.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConversationEntries.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationEntries.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- ConversationEntries.java 17 Nov 2006 02:35:45 -0000 1.3
+++ ConversationEntries.java 24 Nov 2006 23:15:17 -0000 1.4
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.Collection;
@@ -12,6 +13,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -24,6 +26,7 @@
* @author Gavin King
*/
@Name("org.jboss.seam.core.conversationEntries")
+ at Install(precedence=BUILT_IN)
@Scope(ScopeType.SESSION)
@Intercept(NEVER)
public class ConversationEntries extends AbstractMutable implements Serializable
1.10 +4 -1 jboss-seam/src/main/org/jboss/seam/core/ConversationList.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConversationList.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationList.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- ConversationList.java 16 Nov 2006 17:25:04 -0000 1.9
+++ ConversationList.java 24 Nov 2006 23:15:17 -0000 1.10
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.ArrayList;
@@ -11,6 +12,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
import org.jboss.seam.annotations.Create;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -18,10 +20,11 @@
/**
* @author Gavin King
- * @version $Revision: 1.9 $
+ * @version $Revision: 1.10 $
*/
@Scope(ScopeType.PAGE)
@Name("org.jboss.seam.core.conversationList")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class ConversationList implements Serializable {
1.7 +4 -1 jboss-seam/src/main/org/jboss/seam/core/ConversationStack.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ConversationStack.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ConversationStack.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- ConversationStack.java 16 Nov 2006 17:25:04 -0000 1.6
+++ ConversationStack.java 24 Nov 2006 23:15:17 -0000 1.7
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.ArrayList;
@@ -10,6 +11,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
import org.jboss.seam.annotations.Create;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -19,10 +21,11 @@
* Support for "breadcrumbs".
*
* @author Gavin King
- * @version $Revision: 1.6 $
+ * @version $Revision: 1.7 $
*/
@Scope(ScopeType.PAGE)
@Name("org.jboss.seam.core.conversationStack")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class ConversationStack implements Serializable {
1.13 +3 -1 jboss-seam/src/main/org/jboss/seam/core/Dispatcher.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Dispatcher.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Dispatcher.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- Dispatcher.java 18 Nov 2006 00:38:22 -0000 1.12
+++ Dispatcher.java 24 Nov 2006 23:15:17 -0000 1.13
@@ -1,5 +1,7 @@
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import java.io.Serializable;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
@@ -38,7 +40,7 @@
@Stateless
@Name("org.jboss.seam.core.dispatcher")
@Interceptors(SeamInterceptor.class)
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class Dispatcher implements LocalDispatcher
{
1.18 +3 -2 jboss-seam/src/main/org/jboss/seam/core/Ejb.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Ejb.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Ejb.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- Ejb.java 18 Nov 2006 00:38:22 -0000 1.17
+++ Ejb.java 24 Nov 2006 23:15:17 -0000 1.18
@@ -1,7 +1,8 @@
-//$Id: Ejb.java,v 1.17 2006/11/18 00:38:22 nrichards Exp $
+//$Id: Ejb.java,v 1.18 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
@@ -26,7 +27,7 @@
@Intercept(NEVER)
@Startup
@Name("org.jboss.seam.core.ejb")
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class Ejb
{
private static final Log log = LogFactory.getLog(Ejb.class);
1.5 +4 -1 jboss-seam/src/main/org/jboss/seam/core/EventContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: EventContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/EventContext.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- EventContext.java 17 Nov 2006 02:01:39 -0000 1.4
+++ EventContext.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,9 +1,11 @@
-//$Id: EventContext.java,v 1.4 2006/11/17 02:01:39 gavin Exp $
+//$Id: EventContext.java,v 1.5 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -19,6 +21,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.eventContext")
+ at Install(precedence=BUILT_IN)
public class EventContext
{
@Unwrap
1.13 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Events.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Events.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Events.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- Events.java 17 Nov 2006 02:35:45 -0000 1.12
+++ Events.java 24 Nov 2006 23:15:17 -0000 1.13
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.InputStream;
import java.util.ArrayList;
@@ -19,6 +20,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
import org.jboss.seam.annotations.Create;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -31,6 +33,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.events")
+ at Install(precedence=BUILT_IN)
public class Events
{
1.15 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Exceptions.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Exceptions.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Exceptions.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- Exceptions.java 21 Nov 2006 04:50:47 -0000 1.14
+++ Exceptions.java 24 Nov 2006 23:15:17 -0000 1.15
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.InputStream;
import java.util.ArrayList;
@@ -19,6 +20,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Create;
import org.jboss.seam.annotations.HttpError;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Redirect;
@@ -42,6 +44,7 @@
*/
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
+ at Install(precedence=BUILT_IN)
@Name("org.jboss.seam.core.exceptions")
public class Exceptions
{
1.12 +4 -1 jboss-seam/src/main/org/jboss/seam/core/Expressions.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Expressions.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Expressions.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- Expressions.java 17 Nov 2006 02:35:45 -0000 1.11
+++ Expressions.java 24 Nov 2006 23:15:17 -0000 1.12
@@ -1,7 +1,8 @@
-//$Id: Expressions.java,v 1.11 2006/11/17 02:35:45 gavin Exp $
+//$Id: Expressions.java,v 1.12 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
@@ -9,6 +10,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -22,6 +24,7 @@
*/
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
+ at Install(precedence=BUILT_IN)
@Name("org.jboss.seam.core.expressions")
public class Expressions
{
1.4 +4 -1 jboss-seam/src/main/org/jboss/seam/core/FacesContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: FacesContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/FacesContext.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- FacesContext.java 17 Nov 2006 02:01:39 -0000 1.3
+++ FacesContext.java 24 Nov 2006 23:15:17 -0000 1.4
@@ -1,9 +1,11 @@
-//$Id: FacesContext.java,v 1.3 2006/11/17 02:01:39 gavin Exp $
+//$Id: FacesContext.java,v 1.4 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -17,6 +19,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.facesContext")
+ at Install(precedence=BUILT_IN)
public class FacesContext
{
@Unwrap
1.24 +3 -0 jboss-seam/src/main/org/jboss/seam/core/FacesMessages.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: FacesMessages.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/FacesMessages.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- FacesMessages.java 17 Nov 2006 02:35:45 -0000 1.23
+++ FacesMessages.java 24 Nov 2006 23:15:17 -0000 1.24
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.ArrayList;
@@ -18,6 +19,7 @@
import org.hibernate.validator.InvalidValue;
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -30,6 +32,7 @@
*/
@Scope(ScopeType.CONVERSATION)
@Name("org.jboss.seam.core.facesMessages")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class FacesMessages implements Serializable
{
1.5 +4 -0 jboss-seam/src/main/org/jboss/seam/core/FacesPage.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: FacesPage.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/FacesPage.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- FacesPage.java 17 Nov 2006 02:35:45 -0000 1.4
+++ FacesPage.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,11 +1,14 @@
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import java.io.Serializable;
import org.jboss.seam.Component;
import org.jboss.seam.InterceptionType;
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -21,6 +24,7 @@
*/
@Name("org.jboss.seam.core.facesPage")
@Intercept(InterceptionType.NEVER)
+ at Install(precedence=BUILT_IN)
@Scope(ScopeType.PAGE)
public class FacesPage implements Serializable
{
1.3 +4 -1 jboss-seam/src/main/org/jboss/seam/core/HttpError.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: HttpError.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/HttpError.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- HttpError.java 16 Nov 2006 17:25:04 -0000 1.2
+++ HttpError.java 24 Nov 2006 23:15:17 -0000 1.3
@@ -1,7 +1,8 @@
-//$Id: HttpError.java,v 1.2 2006/11/16 17:25:04 gavin Exp $
+//$Id: HttpError.java,v 1.3 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.IOException;
@@ -10,6 +11,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -23,6 +25,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.httpError")
+ at Install(precedence=BUILT_IN)
public class HttpError
{
/**
1.31 +4 -1 jboss-seam/src/main/org/jboss/seam/core/Init.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Init.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Init.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -b -r1.30 -r1.31
--- Init.java 17 Nov 2006 02:35:45 -0000 1.30
+++ Init.java 24 Nov 2006 23:15:17 -0000 1.31
@@ -1,8 +1,9 @@
-//$Id: Init.java,v 1.30 2006/11/17 02:35:45 gavin Exp $
+//$Id: Init.java,v 1.31 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.lang.reflect.Method;
import java.util.ArrayList;
@@ -15,6 +16,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Create;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -31,6 +33,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.init")
+ at Install(precedence=BUILT_IN)
public class Init
{
1.12 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Interpolator.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Interpolator.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Interpolator.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- Interpolator.java 16 Nov 2006 17:25:04 -0000 1.11
+++ Interpolator.java 24 Nov 2006 23:15:17 -0000 1.12
@@ -2,6 +2,7 @@
import static org.jboss.seam.InterceptionType.NEVER;
import static org.jboss.seam.ScopeType.STATELESS;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.text.MessageFormat;
import java.util.StringTokenizer;
@@ -9,6 +10,7 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jboss.seam.Component;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -22,6 +24,7 @@
@Intercept(NEVER)
@Scope(STATELESS)
@Name("org.jboss.seam.core.interpolator")
+ at Install(precedence=BUILT_IN)
public class Interpolator {
private static final Log log = LogFactory.getLog(Interpolator.class);
1.6 +3 -0 jboss-seam/src/main/org/jboss/seam/core/IsUserInRole.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: IsUserInRole.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/IsUserInRole.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- IsUserInRole.java 17 Nov 2006 02:01:39 -0000 1.5
+++ IsUserInRole.java 24 Nov 2006 23:15:17 -0000 1.6
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.util.AbstractMap;
import java.util.Map;
@@ -11,6 +12,7 @@
import javax.servlet.http.HttpServletRequest;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -27,6 +29,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.isUserInRole")
+ at Install(precedence=BUILT_IN)
public class IsUserInRole
{
@Unwrap
1.39 +2 -1 jboss-seam/src/main/org/jboss/seam/core/Jbpm.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Jbpm.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Jbpm.java,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- Jbpm.java 18 Nov 2006 00:38:22 -0000 1.38
+++ Jbpm.java 24 Nov 2006 23:15:17 -0000 1.39
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.InputStream;
import java.io.StringReader;
@@ -47,7 +48,7 @@
@Intercept(NEVER)
@Startup(depends={"org.jboss.seam.core.microcontainer", "org.jboss.seam.core.ejb"})
@Name("org.jboss.seam.core.jbpm")
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class Jbpm
{
private static final Log log = LogFactory.getLog(Jbpm.class);
1.5 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Locale.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Locale.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Locale.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- Locale.java 17 Nov 2006 02:35:45 -0000 1.4
+++ Locale.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,9 +1,11 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -16,6 +18,7 @@
*/
@Scope(ScopeType.STATELESS)
@Name("org.jboss.seam.core.locale")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class Locale {
1.15 +3 -0 jboss-seam/src/main/org/jboss/seam/core/LocaleSelector.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: LocaleSelector.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/LocaleSelector.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- LocaleSelector.java 17 Nov 2006 02:35:45 -0000 1.14
+++ LocaleSelector.java 24 Nov 2006 23:15:17 -0000 1.15
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.ArrayList;
@@ -20,6 +21,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
import org.jboss.seam.annotations.Create;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -35,6 +37,7 @@
@Scope(ScopeType.SESSION)
@Name("org.jboss.seam.core.localeSelector")
@Intercept(NEVER)
+ at Install(precedence=BUILT_IN)
public class LocaleSelector extends AbstractMutable implements Serializable
{
1.20 +3 -2 jboss-seam/src/main/org/jboss/seam/core/ManagedJbpmContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ManagedJbpmContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ManagedJbpmContext.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- ManagedJbpmContext.java 19 Nov 2006 18:13:06 -0000 1.19
+++ ManagedJbpmContext.java 24 Nov 2006 23:15:17 -0000 1.20
@@ -7,6 +7,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import javax.naming.NamingException;
import javax.transaction.RollbackException;
@@ -35,12 +36,12 @@
* Manages a reference to a JbpmSession.
*
* @author <a href="mailto:steve at hibernate.org">Steve Ebersole </a>
- * @version $Revision: 1.19 $
+ * @version $Revision: 1.20 $
*/
@Scope(ScopeType.EVENT)
@Name("org.jboss.seam.core.jbpmContext")
@Intercept(NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class ManagedJbpmContext implements Synchronization
{
private static final Log log = LogFactory.getLog(ManagedJbpmContext.class);
1.121 +4 -1 jboss-seam/src/main/org/jboss/seam/core/Manager.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Manager.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Manager.java,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -b -r1.120 -r1.121
--- Manager.java 17 Nov 2006 16:50:44 -0000 1.120
+++ Manager.java 24 Nov 2006 23:15:17 -0000 1.121
@@ -7,6 +7,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.IOException;
import java.util.ArrayList;
@@ -26,6 +27,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -40,10 +42,11 @@
*
* @author Gavin King
* @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
- * @version $Revision: 1.120 $
+ * @version $Revision: 1.121 $
*/
@Scope(ScopeType.EVENT)
@Name("org.jboss.seam.core.manager")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class Manager
{
1.9 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Messages.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Messages.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Messages.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- Messages.java 16 Nov 2006 17:25:04 -0000 1.8
+++ Messages.java 24 Nov 2006 23:15:17 -0000 1.9
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.AbstractMap;
@@ -12,6 +13,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -25,6 +27,7 @@
@Scope(ScopeType.SESSION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.messages")
+ at Install(precedence=BUILT_IN)
public class Messages implements Serializable {
private transient Map<String, String> messages;
1.3 +3 -2 jboss-seam/src/main/org/jboss/seam/core/Microcontainer.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Microcontainer.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Microcontainer.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- Microcontainer.java 18 Nov 2006 00:38:22 -0000 1.2
+++ Microcontainer.java 24 Nov 2006 23:15:17 -0000 1.3
@@ -1,7 +1,8 @@
-//$Id: Microcontainer.java,v 1.2 2006/11/18 00:38:22 nrichards Exp $
+//$Id: Microcontainer.java,v 1.3 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.kernel.plugins.bootstrap.standalone.StandaloneBootstrap;
import org.jboss.seam.ScopeType;
@@ -21,7 +22,7 @@
@Intercept(NEVER)
@Startup
@Name("org.jboss.seam.core.microcontainer")
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class Microcontainer
{
@Create
1.4 +4 -1 jboss-seam/src/main/org/jboss/seam/core/PageContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PageContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/PageContext.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- PageContext.java 17 Nov 2006 02:01:39 -0000 1.3
+++ PageContext.java 24 Nov 2006 23:15:17 -0000 1.4
@@ -1,9 +1,11 @@
-//$Id: PageContext.java,v 1.3 2006/11/17 02:01:39 gavin Exp $
+//$Id: PageContext.java,v 1.4 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -19,6 +21,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.pageContext")
+ at Install(precedence=BUILT_IN)
public class PageContext
{
@Unwrap
1.45 +2 -1 jboss-seam/src/main/org/jboss/seam/core/Pageflow.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Pageflow.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Pageflow.java,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- Pageflow.java 19 Nov 2006 18:13:06 -0000 1.44
+++ Pageflow.java 24 Nov 2006 23:15:17 -0000 1.45
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.List;
@@ -41,7 +42,7 @@
@PerNestedConversation
@Name("org.jboss.seam.core.pageflow")
@Intercept(NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(dependencies="org.jboss.seam.core.jbpm", precedence=BUILT_IN)
public class Pageflow extends AbstractMutable implements Serializable
{
private static final Log log = LogFactory.getLog(Pageflow.class);
1.52 +3 -0 jboss-seam/src/main/org/jboss/seam/core/Pages.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Pages.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Pages.java,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -b -r1.51 -r1.52
--- Pages.java 20 Nov 2006 20:31:16 -0000 1.51
+++ Pages.java 24 Nov 2006 23:15:17 -0000 1.52
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.InputStream;
import java.util.Collections;
@@ -26,6 +27,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Create;
import org.jboss.seam.annotations.FlushModeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -45,6 +47,7 @@
@Intercept(NEVER)
//@Startup(depends="org.jboss.seam.core.microcontainer") //don't make it a startup component 'cos it needs a faces context
@Name("org.jboss.seam.core.pages")
+ at Install(precedence=BUILT_IN)
public class Pages
{
1.2 +3 -0 jboss-seam/src/main/org/jboss/seam/core/PersistenceContexts.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PersistenceContexts.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/PersistenceContexts.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- PersistenceContexts.java 13 Oct 2006 05:30:26 -0000 1.1
+++ PersistenceContexts.java 24 Nov 2006 23:15:17 -0000 1.2
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.Collections;
@@ -10,6 +11,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.FlushModeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -18,6 +20,7 @@
@Name("org.jboss.seam.core.persistenceContexts")
@Scope(ScopeType.CONVERSATION)
@Intercept(NEVER)
+ at Install(precedence=BUILT_IN)
public class PersistenceContexts extends AbstractMutable implements Serializable
{
private Set<String> set = new HashSet<String>();
1.6 +4 -2 jboss-seam/src/main/org/jboss/seam/core/PojoCache.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PojoCache.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/PojoCache.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- PojoCache.java 18 Nov 2006 00:38:22 -0000 1.5
+++ PojoCache.java 24 Nov 2006 23:15:17 -0000 1.6
@@ -1,6 +1,8 @@
-//$Id: PojoCache.java,v 1.5 2006/11/18 00:38:22 nrichards Exp $
+//$Id: PojoCache.java,v 1.6 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jboss.cache.PropertyConfigurator;
@@ -19,7 +21,7 @@
@Name("org.jboss.seam.core.pojoCache")
@Scope(ScopeType.APPLICATION)
@Intercept(InterceptionType.NEVER)
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class PojoCache
{
1.14 +3 -1 jboss-seam/src/main/org/jboss/seam/core/PooledTask.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PooledTask.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/PooledTask.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- PooledTask.java 22 Nov 2006 04:56:55 -0000 1.13
+++ PooledTask.java 24 Nov 2006 23:15:17 -0000 1.14
@@ -1,5 +1,7 @@
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import javax.faces.context.FacesContext;
import org.jboss.seam.ScopeType;
@@ -17,7 +19,7 @@
*/
@Name("org.jboss.seam.core.pooledTask")
@Scope(ScopeType.APPLICATION)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class PooledTask
{
1.7 +3 -1 jboss-seam/src/main/org/jboss/seam/core/PooledTaskInstanceList.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PooledTaskInstanceList.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/PooledTaskInstanceList.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- PooledTaskInstanceList.java 19 Nov 2006 18:13:06 -0000 1.6
+++ PooledTaskInstanceList.java 24 Nov 2006 23:15:17 -0000 1.7
@@ -1,5 +1,7 @@
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
@@ -20,7 +22,7 @@
*/
@Name("org.jboss.seam.core.pooledTaskInstanceList")
@Scope(ScopeType.APPLICATION)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class PooledTaskInstanceList
{
1.18 +4 -2 jboss-seam/src/main/org/jboss/seam/core/ProcessInstance.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ProcessInstance.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ProcessInstance.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- ProcessInstance.java 19 Nov 2006 18:13:06 -0000 1.17
+++ ProcessInstance.java 24 Nov 2006 23:15:17 -0000 1.18
@@ -6,6 +6,8 @@
*/
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import org.jboss.seam.Component;
import org.jboss.seam.InterceptionType;
import org.jboss.seam.ScopeType;
@@ -22,12 +24,12 @@
* jBPM ProcessInstance.
*
* @author Gavin King
- * @version $Revision: 1.17 $
+ * @version $Revision: 1.18 $
*/
@Scope(ScopeType.APPLICATION)
@Name("org.jboss.seam.core.processInstance")
@Intercept(InterceptionType.NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class ProcessInstance
{
1.9 +4 -0 jboss-seam/src/main/org/jboss/seam/core/Redirect.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Redirect.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Redirect.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- Redirect.java 17 Nov 2006 02:35:45 -0000 1.8
+++ Redirect.java 24 Nov 2006 23:15:17 -0000 1.9
@@ -1,5 +1,7 @@
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
@@ -9,6 +11,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.InterceptionType;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -23,6 +26,7 @@
@Name("org.jboss.seam.core.redirect")
@Intercept(InterceptionType.NEVER)
@Scope(ScopeType.CONVERSATION)
+ at Install(precedence=BUILT_IN)
public class Redirect extends AbstractMutable implements Serializable
{
private String viewId;
1.22 +3 -0 jboss-seam/src/main/org/jboss/seam/core/ResourceBundle.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ResourceBundle.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/ResourceBundle.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- ResourceBundle.java 16 Nov 2006 17:25:04 -0000 1.21
+++ ResourceBundle.java 24 Nov 2006 23:15:17 -0000 1.22
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.ArrayList;
@@ -15,6 +16,7 @@
import org.apache.commons.logging.LogFactory;
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -30,6 +32,7 @@
@Scope(ScopeType.SESSION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.resourceBundle")
+ at Install(precedence=BUILT_IN)
public class ResourceBundle implements Serializable {
private static final Log log = LogFactory.getLog(ResourceBundle.class);
1.4 +3 -0 jboss-seam/src/main/org/jboss/seam/core/SafeActions.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SafeActions.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/SafeActions.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- SafeActions.java 17 Nov 2006 02:35:45 -0000 1.3
+++ SafeActions.java 24 Nov 2006 23:15:17 -0000 1.4
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.BufferedReader;
import java.io.IOException;
@@ -14,6 +15,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -22,6 +24,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.safeActions")
+ at Install(precedence=BUILT_IN)
public class SafeActions
{
1.5 +4 -1 jboss-seam/src/main/org/jboss/seam/core/SessionContext.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SessionContext.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/SessionContext.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- SessionContext.java 17 Nov 2006 02:01:39 -0000 1.4
+++ SessionContext.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,9 +1,11 @@
-//$Id: SessionContext.java,v 1.4 2006/11/17 02:01:39 gavin Exp $
+//$Id: SessionContext.java,v 1.5 2006/11/24 23:15:17 gavin Exp $
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -19,6 +21,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.sessionContext")
+ at Install(precedence=BUILT_IN)
public class SessionContext
{
@Unwrap
1.16 +4 -1 jboss-seam/src/main/org/jboss/seam/core/Switcher.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Switcher.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Switcher.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- Switcher.java 17 Nov 2006 07:12:55 -0000 1.15
+++ Switcher.java 24 Nov 2006 23:15:17 -0000 1.16
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
import java.util.ArrayList;
@@ -14,6 +15,7 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.Seam;
import org.jboss.seam.annotations.Create;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -23,10 +25,11 @@
* Support for the conversation switcher drop-down menu.
*
* @author Gavin King
- * @version $Revision: 1.15 $
+ * @version $Revision: 1.16 $
*/
@Scope(ScopeType.PAGE)
@Name("org.jboss.seam.core.switcher")
+ at Install(precedence=BUILT_IN)
@Intercept(NEVER)
public class Switcher implements Serializable {
1.17 +4 -2 jboss-seam/src/main/org/jboss/seam/core/TaskInstance.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TaskInstance.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/TaskInstance.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- TaskInstance.java 19 Nov 2006 18:13:06 -0000 1.16
+++ TaskInstance.java 24 Nov 2006 23:15:17 -0000 1.17
@@ -6,6 +6,8 @@
*/
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import org.jboss.seam.Component;
import org.jboss.seam.InterceptionType;
import org.jboss.seam.ScopeType;
@@ -22,12 +24,12 @@
* jBPM TaskInstance.
*
* @author Gavin King
- * @version $Revision: 1.16 $
+ * @version $Revision: 1.17 $
*/
@Scope(ScopeType.APPLICATION)
@Name("org.jboss.seam.core.taskInstance")
@Intercept(InterceptionType.NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class TaskInstance
{
1.12 +2 -1 jboss-seam/src/main/org/jboss/seam/core/TaskInstanceList.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TaskInstanceList.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/TaskInstanceList.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- TaskInstanceList.java 19 Nov 2006 18:13:06 -0000 1.11
+++ TaskInstanceList.java 24 Nov 2006 23:15:17 -0000 1.12
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.ScopeType.APPLICATION;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.util.ArrayList;
import java.util.List;
@@ -22,7 +23,7 @@
*/
@Name("org.jboss.seam.core.taskInstanceList")
@Scope(APPLICATION)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class TaskInstanceList
{
1.12 +2 -1 jboss-seam/src/main/org/jboss/seam/core/TaskInstanceListForType.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TaskInstanceListForType.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/TaskInstanceListForType.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- TaskInstanceListForType.java 19 Nov 2006 18:13:06 -0000 1.11
+++ TaskInstanceListForType.java 24 Nov 2006 23:15:17 -0000 1.12
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.ScopeType.APPLICATION;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.util.ArrayList;
import java.util.HashMap;
@@ -23,7 +24,7 @@
*/
@Name("org.jboss.seam.core.taskInstanceListForType")
@Scope(APPLICATION)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class TaskInstanceListForType
{
1.7 +2 -1 jboss-seam/src/main/org/jboss/seam/core/TimeZone.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TimeZone.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/TimeZone.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- TimeZone.java 18 Nov 2006 00:38:22 -0000 1.6
+++ TimeZone.java 24 Nov 2006 23:15:17 -0000 1.7
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
@@ -18,7 +19,7 @@
@Scope(ScopeType.STATELESS)
@Name("org.jboss.seam.core.timeZone")
@Intercept(NEVER)
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class TimeZone {
@Unwrap
1.5 +2 -1 jboss-seam/src/main/org/jboss/seam/core/TimeZoneSelector.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TimeZoneSelector.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/TimeZoneSelector.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- TimeZoneSelector.java 18 Nov 2006 00:38:22 -0000 1.4
+++ TimeZoneSelector.java 24 Nov 2006 23:15:17 -0000 1.5
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
@@ -26,7 +27,7 @@
@Scope(ScopeType.SESSION)
@Name("org.jboss.seam.core.timeZoneSelector")
@Intercept(NEVER)
- at Install(false)
+ at Install(value=false, precedence=BUILT_IN)
public class TimeZoneSelector extends AbstractMutable implements Serializable
{
1.10 +2 -1 jboss-seam/src/main/org/jboss/seam/core/Transition.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Transition.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Transition.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- Transition.java 19 Nov 2006 18:13:06 -0000 1.9
+++ Transition.java 24 Nov 2006 23:15:17 -0000 1.10
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.io.Serializable;
@@ -21,7 +22,7 @@
@Name("org.jboss.seam.core.transition")
@Scope(ScopeType.CONVERSATION)
@Intercept(NEVER)
- at Install(dependencies="org.jboss.seam.core.jbpm")
+ at Install(precedence=BUILT_IN, dependencies="org.jboss.seam.core.jbpm")
public class Transition extends AbstractMutable implements Serializable {
private String name;
1.3 +3 -0 jboss-seam/src/main/org/jboss/seam/core/UiComponent.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: UiComponent.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/UiComponent.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- UiComponent.java 16 Nov 2006 17:25:04 -0000 1.2
+++ UiComponent.java 24 Nov 2006 23:15:17 -0000 1.3
@@ -2,6 +2,7 @@
import static org.jboss.seam.InterceptionType.NEVER;
import static org.jboss.seam.ScopeType.STATELESS;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.util.AbstractMap;
import java.util.Map;
@@ -10,6 +11,7 @@
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -19,6 +21,7 @@
@Name("org.jboss.seam.core.uiComponent")
@Intercept(NEVER)
@Scope(STATELESS)
+ at Install(precedence=BUILT_IN)
public class UiComponent
{
1.9 +3 -0 jboss-seam/src/main/org/jboss/seam/core/UserPrincipal.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: UserPrincipal.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/UserPrincipal.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- UserPrincipal.java 17 Nov 2006 02:35:45 -0000 1.8
+++ UserPrincipal.java 24 Nov 2006 23:15:17 -0000 1.9
@@ -1,6 +1,7 @@
package org.jboss.seam.core;
import static org.jboss.seam.InterceptionType.NEVER;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
import java.security.Principal;
@@ -10,6 +11,7 @@
import org.jboss.seam.Component;
import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@@ -26,6 +28,7 @@
@Scope(ScopeType.APPLICATION)
@Intercept(NEVER)
@Name("org.jboss.seam.core.userPrincipal")
+ at Install(precedence=BUILT_IN)
public class UserPrincipal
{
@Unwrap
1.4 +4 -0 jboss-seam/src/main/org/jboss/seam/core/Validation.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Validation.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Validation.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- Validation.java 17 Nov 2006 02:35:45 -0000 1.3
+++ Validation.java 24 Nov 2006 23:15:17 -0000 1.4
@@ -1,5 +1,7 @@
package org.jboss.seam.core;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
@@ -13,12 +15,14 @@
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Intercept;
import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.Install;
import org.jboss.seam.annotations.Scope;
import org.jboss.seam.contexts.Contexts;
@Name("org.jboss.seam.core.validation")
@Intercept(InterceptionType.NEVER)
@Scope(ScopeType.APPLICATION)
+ at Install(precedence=BUILT_IN)
public class Validation
{
More information about the jboss-cvs-commits
mailing list