}
public BlogAuthor getAuthor(String emailAddress)
{
if(emailAddress == null) throw new IllegalArgumentException("Email must not be null");
Author a = persistenceService.getAuthor(emailAddress);
if (a != null)
return new BlogAuthorImpl(a);
else
return null;
}