All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitnesse.components.LogData Maven / Gradle / Ivy

There is a newer version: 20240707
Show newest version
// Copyright (C) 2003-2009 by Object Mentor, Inc. All rights reserved.
// Released under the terms of the CPL Common Public License version 1.0.
package fitnesse.components;

import java.util.GregorianCalendar;

public class LogData implements Cloneable {
  public String host;
  public GregorianCalendar time;
  public String requestLine;
  public int status;
  public int size;
  public String username;

  public Object clone() throws CloneNotSupportedException {
    LogData newData = (LogData) super.clone();
    newData.time = (GregorianCalendar) time.clone();

    return newData;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy