package com.oreilly.javaxp.cactus.servlet;
import java.io.Serializable;
/**
* @author Brian M. Coyner
* $version $Id: Item.java,v 1.3 2003/02/27 00:24:43 jepc Exp $
*/
public class Item implements Serializable {
private String id;
private String description;
public Item(String id, String description) {
this.id = id;
this.description = description;
}
public String getID() {
return this.id;
}
public String getDescription() {
return this.description;
}
}
|