com.dynatrace.buildtools.graalnative.AgentDownload Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynatrace-native-maven-plugin Show documentation
Show all versions of dynatrace-native-maven-plugin Show documentation
A Maven plugin to auto-instrument GraalVM Native projects with the Dynatrace OneAgent
The newest version!
package com.dynatrace.buildtools.graalnative;
public final class AgentDownload {
private String environmentUrl;
private String apiToken;
private String agentVersion;
private boolean isPresent = true;
public AgentDownload() {}
// called with the default value when `agentDownload` is not specified
public void set(final Object _obj) {
isPresent = false;
}
public String getEnvironmentUrl() {
return environmentUrl;
}
public void setEnvironmentUrl(String environmentUrl) {
this.environmentUrl = environmentUrl;
}
public String getApiToken() {
return apiToken;
}
public void setApiToken(String apiToken) {
this.apiToken = apiToken;
}
public String getAgentVersion() {
return agentVersion;
}
public void setAgentVersion(String agentVersion) {
this.agentVersion = agentVersion;
}
public boolean isPresent() {
return isPresent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy