* @throws XmlRpcFault
* Generic exception for xml-rpc operations
*/
@SuppressWarnings({ "unchecked", "boxing" })
public List<Page> getRecentPosts(int num_posts) throws XmlRpcFault {
XmlRpcArray r = this.mw.getRecentPosts(0, this.username, this.password,
num_posts);
return fillFromXmlRpcArray(r, Page.class);
}