| |
|
| org.blojsom.blog.Trackback
All known Subclasses: org.blojsom.blog.database.DatabaseTrackback,
Trackback | public interface Trackback extends Response(Code) | | author: David Czarnecki version: $Id: Trackback.java,v 1.6 2007/01/17 02:35:16 czarneckid Exp $ since: blojsom 3.0 |
getBlogEntryId | public Integer getBlogEntryId()(Code) | | Get the blog entry ID
Blog entry ID |
getBlogName | String getBlogName()(Code) | | Get the blog name of the trackback
Trackback blog name |
getDateAsFormat | String getDateAsFormat(String format)(Code) | | Return the trackback date formatted with a specified date format
Parameters: format - Date format null if the format is null, otherwise returns the trackback date formatted tothe specified format. If the format is invalid, returns trackbackDate.toString() |
getDateAsFormat | String getDateAsFormat(String format, Locale locale)(Code) | | Return the trackback date formatted with a specified date format
Parameters: format - Date format Parameters: locale - Locale for date formatting null if the entry date or format is null, otherwise returns the entry date formatted to the specified format. If the format is invalid, returns trackbackDate.toString() |
getEscapedBlogName | String getEscapedBlogName()(Code) | | Get the escaped blog name of the trackback
Escaped blog name |
getEscapedExcerpt | String getEscapedExcerpt()(Code) | | Get the excerpt as an escaped string
Escaped excerpt |
getEscapedTitle | String getEscapedTitle()(Code) | | Get the escaped title of the trackback
Escaped title |
getEscapedUrl | String getEscapedUrl()(Code) | | Get the escaped url of the trackback
Escaped url |
getExcerpt | String getExcerpt()(Code) | | Get the excerpt of the trackback
Trackback excerpt |
getId | public Integer getId()(Code) | | Get the trackback ID
Trackback ID |
getTitle | String getTitle()(Code) | | Get the title of the trackback
Trackback title |
getTrackbackDate | Date getTrackbackDate()(Code) | | Retrieve the date this trackback was created
Date trackback was created |
getUrl | String getUrl()(Code) | | Get the url of the trackback
Trackback url |
setBlogEntryId | public void setBlogEntryId(Integer blogEntryId)(Code) | | Set the blog entry ID
Parameters: blogEntryId - Blog entry ID |
setBlogId | void setBlogId(Integer blogId)(Code) | | Set the blog ID
Parameters: blogId - Blog ID |
setBlogName | void setBlogName(String blogName)(Code) | | Set the blog name of the trackback
Parameters: blogName - Trackback blog name |
setEntry | void setEntry(Entry blogEntry)(Code) | | Set the
Entry associated with this trackback
Parameters: blogEntry - Entry |
setExcerpt | void setExcerpt(String excerpt)(Code) | | Set the excerpt of the trackback
Parameters: excerpt - Trackback excerpt |
setId | void setId(Integer id)(Code) | | Set the trackback ID
Parameters: id - Trackback ID |
setMetaData | void setMetaData(Map metaData)(Code) | | Set the trackback meta-data
Parameters: metaData - java.util.Map containing meta-data for this trackback |
setTitle | void setTitle(String title)(Code) | | Set the title of the trackback
Parameters: title - Trackback title |
setTrackbackDate | void setTrackbackDate(Date trackbackDate)(Code) | | Set the trackback date
Parameters: trackbackDate - Trackback date |
setUrl | void setUrl(String url)(Code) | | Set the url of the trackback
Parameters: url - Trackback url |
|
|
|