io.tracee.contextlogger.connector.WellKnownConnectorClassNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-api Show documentation
Show all versions of connector-api Show documentation
Please refer to https://github.com/tracee/contextlogger.
package io.tracee.contextlogger.connector;
/**
* Keeps classnames of well known connector classes. Needed for creating new connector instances via reflection.
* Connector artifacts should contain a unit test, which checks if the values and the real full qualified class name match.
*/
public final class WellKnownConnectorClassNames {
private WellKnownConnectorClassNames() {
// hide Constructor
}
public static final String HTTP_CONNECTOR = "io.tracee.contextlogger.connector.http.HttpConnector";
}