public void setContent(String content) {
this.content = content;
}
public String toString() {
XmlBuffer buffer = new XmlBuffer();
Hashtable attributes = new Hashtable();
attributes.put("name", name);
buffer.appendXml("attachment", attributes, "");
return buffer.toString();
}