public Element getXml() { Element link = JDOMManager.element("link"); link.setAttribute("rel", "related"); link.setAttribute("type", "application/atom+xml"); if (Helper.isNotNullOrEmpty(title)) link.setAttribute("title", title); link.setAttribute("href", url); return link; }
public String getFilename() { String hash = Integer.toHexString(title.hashCode()); return Helper.pad(hash, '0', 8); }