1 31 package org.blojsom.blog; 32 33 import java.util.Date ; 34 import java.util.Locale ; 35 import java.util.Map ; 36 37 42 public interface Trackback extends Response { 43 44 49 void setId(Integer id); 50 51 56 public Integer getId(); 57 58 63 void setBlogId(Integer blogId); 64 65 70 Integer getBlogId(); 71 72 77 public Integer getBlogEntryId(); 78 79 84 public void setBlogEntryId(Integer blogEntryId); 85 86 91 String getTitle(); 92 93 98 String getEscapedTitle(); 99 100 105 void setTitle(String title); 106 107 112 String getExcerpt(); 113 114 119 String getEscapedExcerpt(); 120 121 126 void setExcerpt(String excerpt); 127 128 133 String getUrl(); 134 135 140 String getEscapedUrl(); 141 142 147 void setUrl(String url); 148 149 154 String getBlogName(); 155 156 161 String getEscapedBlogName(); 162 163 164 169 Map getMetaData(); 170 171 176 void setBlogName(String blogName); 177 178 183 void setMetaData(Map metaData); 184 185 192 String getDateAsFormat(String format); 193 194 201 String getDateAsFormat(String format, Locale locale); 202 203 208 Entry getEntry(); 209 210 215 void setEntry(Entry blogEntry); 216 217 222 Date getTrackbackDate(); 223 224 229 void setTrackbackDate(Date trackbackDate); 230 } 231 | Popular Tags |