Example usage for org.springframework.web.client RestOperations interface-usage

List of usage examples for org.springframework.web.client RestOperations interface-usage

Introduction

In this page you can find the example usage for org.springframework.web.client RestOperations interface-usage.

Usage

From source file org.jasig.springframework.web.client.ExtendedRestOperations.java

/**
 * Adds some utility methods to {@link RestOperations}
 * 
 * @author Eric Dalquist
 */
public interface ExtendedRestOperations extends RestOperations {

From source file de.zib.gndms.gndmc.dspace.test.MockRestTemplate.java

/**
 * A mockup for a rest template.
 * 
 * @author Ulrike Golas
 */

From source file org.springframework.web.client.RestTemplate.java

/**
 * <strong>Spring's central class for client-side HTTP access.</strong>
 * It simplifies communication with HTTP servers, and enforces RESTful principles.
 * It handles HTTP connections, leaving application code to provide URLs
 * (with possible template variables) and extract results.
 *