All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rbkmoney.woody.api.trace.context.metadata.MetadataExtension Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.rbkmoney.woody.api.trace.context.metadata;

import com.rbkmoney.woody.api.trace.Metadata;

public interface MetadataExtension {
    T getValue(Metadata metadata);

    default T getValue(String key, Metadata metadata) {
        return getValue(metadata);
    }

    void setValue(T val, Metadata metadata);

    default void setValue(String key, T val, Metadata metadata) {
        setValue(val, metadata);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy