1 package ch.odi.justblog.api.blogger; 2 3 /*** 4 * This is an extension to a Entry object. 5 * It provides all the information that a persistent Blogger entry can have. 6 * 7 * @author oglueck 8 */ 9 interface IBloggerEntryExt { 10 /*** 11 * @return Returns the id. 12 */ 13 String getId(); 14 15 /*** 16 * @param id The id to set. 17 */ 18 void setId(String id); 19 }