Example usage for org.springframework.restdocs.hypermedia AtomLinkExtractor AtomLinkExtractor

List of usage examples for org.springframework.restdocs.hypermedia AtomLinkExtractor AtomLinkExtractor

Introduction

In this page you can find the example usage for org.springframework.restdocs.hypermedia AtomLinkExtractor AtomLinkExtractor.

Prototype

AtomLinkExtractor

Source Link

Usage

From source file:org.springframework.restdocs.hypermedia.LinkExtractors.java

/**
 * Returns a {@code LinkExtractor} capable of extracting links in Atom format where
 * the links are found in an array named {@code links}.
 *
 * @return The extractor for Atom-style links
 *///from  w w  w . ja  v a 2 s  .  c om
public static LinkExtractor atomLinks() {
    return new AtomLinkExtractor();
}