[jboss-cvs] jboss-seam/src/main/org/jboss/seam/remoting ...
Gavin King
gavin.king at jboss.com
Fri Nov 24 18:15:19 EST 2006
User: gavin
Date: 06/11/24 18:15:19
Modified: src/main/org/jboss/seam/remoting RemotingConfig.java
Log:
JBSEAM-293 component precedence
Revision Changes Path
1.4 +4 -0 jboss-seam/src/main/org/jboss/seam/remoting/RemotingConfig.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: RemotingConfig.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/remoting/RemotingConfig.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- RemotingConfig.java 17 Nov 2006 02:35:45 -0000 1.3
+++ RemotingConfig.java 24 Nov 2006 23:15:19 -0000 1.4
@@ -1,9 +1,12 @@
package org.jboss.seam.remoting;
import static org.jboss.seam.ScopeType.APPLICATION;
+import static org.jboss.seam.annotations.Install.BUILT_IN;
+
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;
@@ -16,6 +19,7 @@
*/
@Name("org.jboss.seam.remoting.remotingConfig")
@Scope(APPLICATION)
+ at Install(precedence=BUILT_IN)
@Intercept(InterceptionType.NEVER)
public class RemotingConfig
{
More information about the jboss-cvs-commits
mailing list