/**
   * Create an squery using some preset values for the query parameters, only passing in the
   * document ids to be searched.
   *
   * @param docidList an array of document identifiers to search for
   */
  public static String createDocidQuery(String[] docidList) throws PropertyNotFoundException {
    String pathQuery = "";
    Hashtable params = getDefaultQueryParams();
    if (docidList != null) {
      params.put("/eml/@packageId", docidList);
    }

    pathQuery = DBQuery.createSQuery(params);
    return pathQuery;
  }