001
002package io.vrap.rmf.base.client.http;
003
004/**
005 * Provider for a correlation id which may be added to a request as unique identifier
006 */
007@FunctionalInterface
008public interface CorrelationIdProvider {
009    String getCorrelationId();
010}