/* */
/* */ public StatefulSessionContextImpl(SessionBeanContext beanContext)
/* */ {
/* 100 */ assert (beanContext != null) : "beanContext is null";
/* */
/* 102 */ this.delegate = new SessionContextImpl(beanContext);
/* 103 */ this.containerGuid = Ejb3Registry.guid(beanContext.getContainer());
/* 104 */ this.containerClusterUid = Ejb3Registry.clusterUid(beanContext.getContainer());
/* 105 */ this.id = beanContext.getId();
/* 106 */ this.isClustered = ((SessionContainer)beanContext.getContainer()).isClustered();
/* */ }