Uses of Class
com.jayway.restassured.mapper.ObjectMapper

Packages that use ObjectMapper
com.jayway.restassured.internal   
com.jayway.restassured.internal.mapping   
com.jayway.restassured.mapper   
com.jayway.restassured.response   
com.jayway.restassured.specification   
 

Uses of ObjectMapper in com.jayway.restassured.internal
 

Methods in com.jayway.restassured.internal with parameters of type ObjectMapper
<T> T
RestAssuredResponseImpl.as(Class<T> cls, ObjectMapper mapper)
           
 RequestSpecification RequestSpecificationImpl.body(Object object, ObjectMapper mapper)
           
 RequestSpecification RequestSpecificationImpl.content(Object object, ObjectMapper mapper)
           
 

Uses of ObjectMapper in com.jayway.restassured.internal.mapping
 

Methods in com.jayway.restassured.internal.mapping with parameters of type ObjectMapper
static
<T> T
ObjectMapping.deserialize(Object object, Class<T> cls, String contentType, String defaultContentType, ObjectMapper map)
           
static String ObjectMapping.serialize(Object object, String contentType, ObjectMapper map)
           
 

Uses of ObjectMapper in com.jayway.restassured.mapper
 

Methods in com.jayway.restassured.mapper that return ObjectMapper
static ObjectMapper ObjectMapper.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ObjectMapper[] ObjectMapper.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of ObjectMapper in com.jayway.restassured.response
 

Methods in com.jayway.restassured.response with parameters of type ObjectMapper
<T> T
ResponseBody.as(Class<T> cls, ObjectMapper mapper)
          Get the body and map it to a Java object using a specific object mapper.
 

Uses of ObjectMapper in com.jayway.restassured.specification
 

Methods in com.jayway.restassured.specification with parameters of type ObjectMapper
 RequestSpecification RequestSpecification.body(Object object, ObjectMapper mapper)
          Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request using a specific object mapper.
 RequestSpecification RequestSpecification.content(Object object, ObjectMapper mapper)
          Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request using a specific object mapper.
 



Copyright © 2010-2012. All Rights Reserved.