package utilities; public interface XmlSerializable { String toXml(T item); T fromXml(String xml); }