All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whitesource.agent.api.dispatch.JwtAccessTokenRequest Maven / Gradle / Ivy

There is a newer version: 18.4.1
Show newest version
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