Example usage for org.springframework.boot.actuate.endpoint.web WebOperation getRequestPredicate

List of usage examples for org.springframework.boot.actuate.endpoint.web WebOperation getRequestPredicate

Introduction

In this page you can find the example usage for org.springframework.boot.actuate.endpoint.web WebOperation getRequestPredicate.

Prototype

WebOperationRequestPredicate getRequestPredicate();

Source Link

Document

Returns the predicate for requests that can be handled by this operation.

Usage

From source file:org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver.java

private Link createLink(String requestUrl, WebOperation operation) {
    return createLink(requestUrl, operation.getRequestPredicate().getPath());
}