541542543544545546547
String id = (String)attributes.get("id"); String title = URLDecoder.decode((String)attributes.get("title")); if (id == null || title == null) { return null; } return new IndexEntry(id, title, new Date()); }