Using Seam 1.1.0.GA
Hello Forum, This is, hopefully, an easy question:
When using @End to end a nested conversation, I found that the conversation was not ended when I annotated a method in a superclass. E.g. like so:
public class Bean1 {
.....
@End
public String apply() {
doSomething();
return "nonNullOutcome";
}
.....
}
public class Bean2 extends Bean1 {
.....
public String apply() {
String s = super.apply();
doSomething();
return (s);
}
.....
}@End is not defined as @Inherited, so no.