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

cd.connect.context.NamedConnectContext Maven / Gradle / Ivy

Go to download

core functional logging for platform - loads services to enhance each log. we recommend async logger with log4j2.

There is a newer version: 2.2
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy