org.apache.aries.samples.blog.api
Interface BlogAuthor


public interface BlogAuthor


Method Summary
 String getBio()
          Get the author's biography
 String getDateOfBirth()
          Get the author's date of birth
 String getEmailAddress()
          Get the author's email address
 List<? extends BlogEntry> getEntries()
           
 String getFullName()
          Get the author's full name
 String getName()
          Get the author's display name
 

Method Detail

getName

String getName()
Get the author's display name

Returns:
the display name String

getFullName

String getFullName()
Get the author's full name

Returns:
the full name String

getEmailAddress

String getEmailAddress()
Get the author's email address

Returns:
the email address String

getBio

String getBio()
Get the author's biography

Returns:
the biography String

getDateOfBirth

String getDateOfBirth()
Get the author's date of birth

Returns:
the date of birth String (dd-mm-yyyy)

getEntries

List<? extends BlogEntry> getEntries()
Returns:
a list of Blog Entries


Copyright © 2009-2011 The Apache Software Foundation. All Rights Reserved.