Given the following code:
public class FooBar { public static volatile ConcurrentHashMap myConfigData = new ConcurrentHashMap(); } public class
You could alway use AtomicReference if you feel unsure.
Although I think in your case volatile schould be enough.