import java.io.*;

// Notice this object implements the Serializable interface
public class Order implements Serializable {

  // This attribute holds the Order#
  private String order = new String("");
  // This attribute holds the Status of the Order
  private String status = new String("");

  // Default Constructor
  public Order() {

  }

  // Accessor used to set the Order #
  public void setOrder(String value) {

    if ( value != null ) {

      order = value;
    }
  }

  // Accessor used to get the Order #
  public String getOrder() {

    return order;
  }

  // Accessor used to set the Order Status
  public void setStatus(String value) {

    if ( value != null ) {

      status = value;
    }
  }

  // Accessor used to get the Order Status
  public String getStatus() {

    return status;
  }
}