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

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

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

/**
 * Created by anna.rozin
 */
public class ConfigurationRequest extends BaseRequest {


    /* --- Static members --- */

    private static final long serialVersionUID = 1565062936737064054L;

    /* --- Constructors --- */

    /**
     * Default constructor
     */
    public ConfigurationRequest() {
        super(RequestType.GET_CONFIGURATION);
    }

    /**
     * Constructor
     *
     * @param orgToken                  Organization token uniquely identifying the account at white source.
     * @param product                   The product name or token to update.
     * @param productVersion            The product version.
     * @param userKey                   user key uniquely identifying the account at white source.
     * @param requesterEmail            Email of the WhiteSource user that requests to update WhiteSource.
     * @param productToken              The product token
     */
    public ConfigurationRequest(String orgToken, String product, String productVersion, String userKey, String requesterEmail, String productToken) {
        this();
        this.orgToken = orgToken;
        this.product = product;
        this.productVersion = productVersion;
        this.userKey = userKey;
        this.requesterEmail = requesterEmail;
        this.productToken = productToken;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy