Exemplo n.º 1
0
  /** checks for the repeat request and adds in the list if not repeated */
  private void setIsRepeatRequest() {

    // checking for duplicate request
    if (!checkForRepeatRequest()) {

      isRepeatRequest = false;

      // adding this object in the list
      Util.addHttRequest(this);
    } else {

      isRepeatRequest = true;
    }
  }