Your one should have application precedence (the default), the core one has the lower
built in precedence.
From the source
| @Name("org.jboss.seam.security.identity")
| @Scope(SESSION)
| @Install(precedence = BUILT_IN,
classDependencies="org.drools.WorkingMemory")
|
So if you define a component with the same name and leave the precedence as default it
should prefer your component over the default one.
If you're getting a clash like that you are probably either specifying @Install(
BUILT_IN ) by accident or have the component duplicated somewhere.
Cheers.
Mike.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4017561#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...