View Javadoc

1   package ch.odi.justblog.api.blogger;
2   
3   /***
4    *
5    * @author oglueck
6    */
7   class PersistentEntryExt implements IBloggerEntryExt {
8       private String id;
9       
10      /***
11       * @return Returns the id.
12       */
13      public String getId() {
14          return id;
15      }
16      
17      /***
18       * @param id The id to set.
19       */
20      public void setId(String id) {
21          this.id = id;
22      }
23  }