package rocks.inspectit.shared.cs.ci.sensor.method.impl; import javax.xml.bind.annotation.XmlRootElement; import rocks.inspectit.shared.cs.ci.sensor.method.AbstractRemoteSensorConfig; /** * Remote HTTP java server sensor config. * * @author Thomas Kluge * */ @XmlRootElement(name = "remote-http-server-sensor-config") public class RemoteJavaHttpServerSensorConfig extends AbstractRemoteSensorConfig { /** * Sensor name. */ public static final String SENSOR_NAME = "Remote Java Http Server Sensor"; /** * Implementing class name. */ public static final String CLASS_NAME = "rocks.inspectit.agent.java.sensor.method.remote.server.http.JavaHttpRemoteServerSensor"; /** * {@inheritDoc} */ @Override public String getClassName() { return CLASS_NAME; } /** * {@inheritDoc} */ @Override public String getName() { return SENSOR_NAME; } }