DATACMNS-164 - Added support for XML/JSON marshaling of Page, Pageable and Sort.

Added XmlTypeAdapter implementations that convert the PageImpl, PageRequest and Sort value objects into a JAXB marshalable object.
This commit is contained in:
Oliver Gierke
2012-05-02 13:48:50 +02:00
parent cf71070de6
commit c64f01414f
15 changed files with 899 additions and 1 deletions

View File

@@ -130,6 +130,20 @@
<version>${webbeans.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.hateoas</groupId>
<artifactId>spring-hateoas</artifactId>
<version>${org.springframework.hateoas.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.3U1</version>
<scope>test</scope>
</dependency>
</dependencies>