/**
   * This method reads this <code>ServicesRemovalStatus</code> object from the specified input
   * stream object.
   *
   * @param is DataInput object
   * @param versionNo
   * @exception IOException thrown in case of error while reading data
   * @since Tifosi2.0
   */
  public void fromStream(DataInput is, int versionNo) throws IOException {
    int size = is.readInt();

    for (int i = 0; i < size; i++) {
      String key = readUTF(is);
      ServiceRemovalInfo val = new ServiceRemovalInfo();

      val.fromStream(is, versionNo);
      m_hashServiceRemovalStatus.put(key, val);
    }
  }