org.whitesource.agent.api.dispatch.JwtAccessTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wss-agent-api Show documentation
Show all versions of wss-agent-api Show documentation
Java bindings for White Source API
package org.whitesource.agent.api.dispatch;
public class JwtAccessTokenRequest extends BaseRequest {
private static final long serialVersionUID = -2280907846002128613L;
public JwtAccessTokenRequest() {
super(RequestType.JWT_ACCESS_TOKEN);
}
public JwtAccessTokenRequest(String orgToken) {
this();
this.orgToken = orgToken;
}
public JwtAccessTokenRequest(String orgToken, String userKey) {
this(orgToken);
this.userKey = userKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy