org.jboss.weld.examples.permalink
Class BlogEntry

java.lang.Object
  extended by org.jboss.weld.examples.permalink.BlogEntry

public class BlogEntry
extends Object

Author:
Dan Allen

Constructor Summary
BlogEntry()
           
BlogEntry(Long id, String author, String category, String title, Date postDate, String body)
           
 
Method Summary
 String getAuthor()
           
 String getBody()
           
 String getCategory()
           
 List<Comment> getComments()
           
 Long getId()
           
 int getNumComments()
           
 Date getPostDate()
           
 List<String> getTags()
           
 String getTitle()
           
 void setAuthor(String author)
           
 void setBody(String body)
           
 void setCategory(String category)
           
 void setComments(List<Comment> comments)
           
 void setId(Long id)
           
 void setPostDate(Date postDate)
           
 void setTags(List<String> tags)
           
 void setTitle(String title)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BlogEntry

public BlogEntry()

BlogEntry

public BlogEntry(Long id,
                 String author,
                 String category,
                 String title,
                 Date postDate,
                 String body)
Method Detail

getAuthor

public String getAuthor()

setAuthor

public void setAuthor(String author)

getBody

public String getBody()

setBody

public void setBody(String body)

getCategory

public String getCategory()

setCategory

public void setCategory(String category)

getId

public Long getId()

setId

public void setId(Long id)

getPostDate

public Date getPostDate()

setPostDate

public void setPostDate(Date postDate)

getTags

public List<String> getTags()

setTags

public void setTags(List<String> tags)

getTitle

public String getTitle()

setTitle

public void setTitle(String title)

getComments

public List<Comment> getComments()

setComments

public void setComments(List<Comment> comments)

getNumComments

public int getNumComments()


Copyright © 2008-2011 Seam Framework. All Rights Reserved.