public StringBuffer showItem(String identifier) {
JConfig.log().logDebug("Retrieving auction: " + identifier);
XMLSerialize xmlable = EntryFactory.getInstance().constructEntry(identifier);
if(xmlable != null) {
XMLInterface xe = xmlable.toXML();
return xe.toStringBuffer();
}
return null;
}
public StringBuffer buy(String identifier, String howMany) {