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

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

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

public class AsyncCheckPolicyComplianceResponseRequest extends BaseRequest {

    /* --- Static Members --- */

    private static final long serialVersionUID = 7267771318691275351L;

    /* --- Members --- */

    protected String identifier;

    /**
     * Default constructor
     */
    public AsyncCheckPolicyComplianceResponseRequest(String identifier) {
        super(RequestType.ASYNC_CHECK_POLICY_COMPLIANCE_RESPONSE);
        this.identifier = identifier;
    }

    public AsyncCheckPolicyComplianceResponseRequest() {super(RequestType.ASYNC_CHECK_POLICY_COMPLIANCE_RESPONSE);}

    public String getIdentifier() {
        return identifier;
    }

    public void setIdentifier(String identifier) {
        this.identifier = identifier;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy