private ConfigurationWatchListUtil() {
}
public static void setMainWatchURL(Context context, URL url) {
ConfigurationWatchList cwl = getConfigurationWatchList(context);
if (cwl == null) {
cwl = new ConfigurationWatchList();
cwl.setContext(context);
context.putObject(CoreConstants.CONFIGURATION_WATCH_LIST, cwl);
} else {
cwl.clear();
}
setConfigurationWatchListResetFlag(context, true);
cwl.setMainURL(url);
}