void stopValue(StopContext context) {
contextService = null;
}
public ContextServiceImpl getValue() throws IllegalStateException {
final ContextServiceImpl value = this.contextService;
if (value == null) {
throw EeLogger.ROOT_LOGGER.concurrentServiceValueUninitialized();
}
return value;
}