- java.lang.Object
-
- com.semanticcms.core.model.Author
-
public class Author extends Object
An author of a book, a page, or a set of pages.TODO: Possible Google+ integration: http://www.vervesearch.com/blog/how-to-implement-the-relauthor-tag-a-step-by-step-guide/ TODO: And also: https://yoast.com/push-rel-author-head/ TODO: This seems killed by Google, any value in it still?
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getBookName()
String
getHref()
String
getName()
String
getPage()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
Author
public Author(String name, String href, String bookName, String page)
Either href may be provided, or book/page may be provided, but not both. When page provided without book, assumes page is within current book. When page provided, book is also required. When name not provided, and page provided, uses page title as the author name.
-
-