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

no.sb1.troxy.util.ModeHolder Maven / Gradle / Ivy

Go to download

Troxy is a proxy intended for simulating a remote service without actually connecting to the server. Incoming requests are matched using regular expressions and responses are created from a recorded response from the remote service and optionally modified by inserting values caught from the regular expression used to match the request.

There is a newer version: 3.2.49
Show newest version
package no.sb1.troxy.util;

import no.sb1.troxy.common.Mode;

public class ModeHolder {

    public Mode mode;

    public ModeHolder(Mode mode) {
        this.mode = mode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy