
com.wavefront.agent.TokenWorkerWF Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package com.wavefront.agent;
import javax.annotation.Nonnull;
public class TokenWorkerWF implements TokenWorker, TenantInfo {
private String token;
private String server;
public TokenWorkerWF(@Nonnull final String token, @Nonnull final String server) {
this.token = token;
this.server = server;
}
@Override
public String getWFServer() {
return server;
}
@Override
public String getBearerToken() {
return token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy