com.github.dreamhead.moco.setting.Setting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moco-core Show documentation
Show all versions of moco-core Show documentation
Moco is an easy setup stub framework, mainly focusing on testing and integration.
package com.github.dreamhead.moco.setting;
import com.github.dreamhead.moco.ConfigApplier;
import com.github.dreamhead.moco.Request;
import com.github.dreamhead.moco.ResponseSetting;
import com.github.dreamhead.moco.internal.SessionContext;
public interface Setting extends ConfigApplier>, ResponseSetting {
boolean match(final Request request);
void writeToResponse(final SessionContext context);
}