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

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

There is a newer version: 18.4.1
Show newest version
package org.whitesource.agent.api.dispatch;

public class JwtAccessTokenResult extends BaseResult {

    private static final long serialVersionUID = 4617440013556093604L;

    private String jwtAccessToken;

    public JwtAccessTokenResult() {
        super();
    }

    public JwtAccessTokenResult(String jwtAccessToken) {
        super();
        this.jwtAccessToken = jwtAccessToken;
    }

    public String getJwtAccessToken() {
        return jwtAccessToken;
    }

    public void setJwtAccessToken(String jwtAccessToken) {
        this.jwtAccessToken = jwtAccessToken;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy