/**
  * Updates the state as if it were never configured.
  *
  * <p>Note: This will not pass the forget call to the Wi-Fi API.
  */
 public void forget() {
   blockRefresh();
   setConfigured(false);
   setNetworkId(NETWORK_ID_NOT_SET);
   setPrimary(false);
   setStatus(null);
   setDisabled(false);
   unblockRefresh();
 }