I want to create a Map object that can lose value only if we explicitly delete it from map. I have created Map object like
public static Map<Long,String> listUser =new HasMap<Long,String>();
but every time class object is created new instance of Map is also created that contain null value. I want to create a Map instance that contain value we stored before.