// Register our listeners on SFSB that will be created
private void registerInterceptors(AbstractComponentDescription componentDescription, AnnotationInstance annotation) {
if (componentDescription instanceof StatefulComponentDescription && isExtendedPersistenceContext(annotation)) {
componentDescription.addPostConstructComponentLifecycle(new SFSBCreateInterceptor());
componentDescription.addPreDestroyComponentLifecycle(new SFSBDestroyInterceptor());
componentDescription.addInterceptorFactory(SFSBInvocationInterceptorFactory.getInstance());
}
}