org.whitesource.agent.api.dispatch.UploadScaLogsRequest 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 UploadScaLogsRequest extends BaseRequest {
/* --- Static members --- */
private static final long serialVersionUID = -6634396300199014567L;
/* --- Members --- */
/* --- Constructors --- */
/**
* Default constructor
*/
public UploadScaLogsRequest() {
super(RequestType.UPLOAD_SCA_LOGS);
}
/**
* Constructor
*
* @param orgToken Organization token uniquely identifying the account at white source.
* @param userKey user key uniquely identifying the account at white source.
* @param requesterEmail Email of the WhiteSource user that requests to update WhiteSource.
*/
public UploadScaLogsRequest(String orgToken, String userKey, String requesterEmail) {
this();
this.orgToken = orgToken;
this.userKey = userKey;
this.requesterEmail = requesterEmail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy