com.teamscale.client.ProfilerRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-client Show documentation
Show all versions of teamscale-client Show documentation
A tiny service client that only supports Teamscale's the external upload interface and impacted-tests service.
package com.teamscale.client;
/**
* DTO that is sent to the profiler as a response of registering against
* Teamscale and contains the profiler ID that was assigned to it as well as the
* configuration it should pick up.
*/
public class ProfilerRegistration {
/** The ID that was assigned to this instance of the profiler. */
public String profilerId;
/** The profiler configuration to use. */
public ProfilerConfiguration profilerConfiguration;
}