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

io.github.mike10004.vhs.HarResponseEncoderFactory Maven / Gradle / Ivy

There is a newer version: 0.32
Show newest version
package io.github.mike10004.vhs;

import io.github.mike10004.vhs.harbridge.HarResponseEncoding;
import io.github.mike10004.vhs.harbridge.ParsedRequest;

public interface HarResponseEncoderFactory {

    HarResponseEncoding getEncoder(ParsedRequest request, E harEntry);

    static  HarResponseEncoderFactory alwaysIdentityEncoding() {
        return (request, entry) -> HarResponseEncoding.unencoded();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy