org.whitesource.agent.api.dispatch.JwtAccessTokenResult 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 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