cd.connect.context.NamedConnectContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-java-logging Show documentation
Show all versions of connect-java-logging Show documentation
core functional logging for platform - loads services to enhance each log.
we recommend async logger with log4j2.
package cd.connect.context;
/**
* @author Richard Vowles - https://plus.google.com/+RichardVowles
*/
public interface NamedConnectContext {
// all http based incoming traffic must have a request id
public static final String requestId = "request-id";
// cucumber testing is a core part of Connect, hence the scenario id
public static final String scenarioId = "scenario-id";
String get();
void set(String id);
void remove();
}