When using the depends attribute which of the following is correct.
1. Fully qualified name of Bean Interface - com.whatever.Customer
2. Fully qualified name of Bean - com.whatever.CustomerBean
3. Name of Seam component - @Name("customer")
So when defining my seam component and using the @Startup annotation what goes in the XXX spot. I want this class below to depend on the CustomerBean class.
@Name("someSeamComp")
@Stateful
@Startup(depends={"XXX"})
public class SomeSeamComp extends SSCLocal {
.... blah, blah, blah ...
}
This would be the name of the seam component.