Deserializar Objetos

Olá, gostaria de transformar esse XML, em Classes pojos

<ISBNdb server_time="2015-12-24T23:02:16Z">
<BookList total_results="4097846" page_size="10" page_number="1" shown_results="10">
<BookData book_id="a_thief_of_time2" isbn="0708924468" isbn13="9780708924464">
<Title>A thief of time</Title>
<TitleLong>A thief of time</TitleLong>
<AuthorsText/>
<PublisherText publisher_id="ulverscroft">Leicester, [Eng.]; Ulverscroft</PublisherText>
</BookData>

Existe essa possibilidade? Quais as Ferramentas? Eu tentei com XStream mais sem sucesso!

Ta faltando coisa nesse xml ai, tenta colocar ele completo.

<?xml version="1.0" encoding="UTF-8"?>

<ISBNdb server_time="2015-12-27T06:15:33Z">
<BookList total_results="4097846" page_size="10" page_number="1" shown_results="10">
<BookData book_id="a_thief_of_time2" isbn="0708924468" isbn13="9780708924464">
<Title>A thief of time</Title>
<TitleLong>A thief of time</TitleLong>
<AuthorsText></AuthorsText>
<PublisherText publisher_id="ulverscroft">Leicester, [Eng.]; Ulverscroft</PublisherText>
</BookData>
<BookData book_id="thief_of_time_a12" isbn="0333234979" isbn13="9780333234976">
<Title>Thief of time</Title>
<TitleLong></TitleLong>
<AuthorsText>[by] John Wainwright</AuthorsText>
<PublisherText publisher_id="macmillan">London : Macmillan, 1978.</PublisherText>
</BookData>
<BookData book_id="thief_of_time_a02" isbn="0312799896" isbn13="9780312799892">
<Title>Thief of time</Title>
<TitleLong></TitleLong>
<AuthorsText>John Wainwright</AuthorsText>
<PublisherText publisher_id="st_martins">New York : St. Martin's, 1978.</PublisherText>
</BookData>
<BookData book_id="a_thief_of_time1" isbn="0718131126" isbn13="9780718131128">
<Title>A thief of time</Title>
<TitleLong>A thief of time</TitleLong>
<AuthorsText>Tony Hillerman</AuthorsText>
<PublisherText publisher_id="london">Lincoln; London</PublisherText>
</BookData>
<BookData book_id="thief_of_time_a05" isbn="0552148407" isbn13="9780552148405">
<Title>Thief of time</Title>
<TitleLong></TitleLong>
<AuthorsText>Terry Pratchett</AuthorsText>
<PublisherText publisher_id="corgi">London : Corgi, 2002, c2001.</PublisherText>
</BookData>
<BookData book_id="thief_of_time_a08" isbn="0708994032" isbn13="9780708994030">
<Title>Thief of time</Title>
<TitleLong>Thief of time: a Discworld novel</TitleLong>
<AuthorsText>Terry Pratchett</AuthorsText>
<PublisherText publisher_id="charnwood">Leicester : Charnwood, 2002.</PublisherText>
</BookData>
<BookData book_id="thief_of_time_a01" isbn="0060199563" isbn13="9780060199562">
<Title>Thief of time</Title>
<TitleLong>Thief of time: a novel of Discworld</TitleLong>
<AuthorsText>Terry Pratchett</AuthorsText>
<PublisherText publisher_id="harpercollins">New York : HarperCollins, c2001.</PublisherText>
</BookData>
<BookData book_id="the_thief_of_time" isbn="0297646567" isbn13="9780297646563">
<Title>The thief of time</Title>
<TitleLong></TitleLong>
<AuthorsText>John Boyne</AuthorsText>
<PublisherText publisher_id="weidenfeld_nicolson">London : Weidenfeld &amp; Nicolson, 2000.</PublisherText>
</BookData>
<BookData book_id="the_thief_of_time_a01" isbn="0297646540" isbn13="9780297646549">
<Title>The thief of time</Title>
<TitleLong></TitleLong>
<AuthorsText>John Boyne</AuthorsText>
<PublisherText publisher_id="weidenfeld_nicolson">London : Weidenfeld &amp; Nicolson, 2000.</PublisherText>
</BookData>
<BookData book_id="a_thief_of_time" isbn="0060159383" isbn13="9780060159382">
<Title>A thief of time</Title>
<TitleLong>A thief of time: a novel</TitleLong>
<AuthorsText>Tony Hillerman</AuthorsText>
<PublisherText publisher_id="harper_row">New York : Harper &amp; Row, c1988.</PublisherText>
</BookData>
</BookList>
</ISBNdb>

Transformei todas essas TAGs em Fields de Beans, mas nada. O XStream não reconhece.

http://www.caelum.com.br/apostila-java-testes-xml-design-patterns/trabalhando-com-xml/#4-1-os-dados-da-bolsa-de-valores