org.gs4tr.gcc.restclient.operation.DownloadDeliverable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.operation;
import org.gs4tr.gcc.restclient.GCConfig;
import org.gs4tr.gcc.restclient.dto.GCResponse;
import org.gs4tr.gcc.restclient.request.GCRequest;
import org.gs4tr.gcc.restclient.request.SubmissionRequest;
public class DownloadDeliverable extends GCOperation {
private final SubmissionRequest request;
public DownloadDeliverable(GCConfig config, SubmissionRequest request) {
super(config);
this.request = request;
}
private static final String REQUEST_URL = "submission/download/deliverable";
private static final String REQUEST_METHOD = "POST";
@Override
public String getRequestMethod() {
return REQUEST_METHOD;
}
@Override
protected String getApiUrl() {
return REQUEST_URL;
}
@Override
public GCRequest getRequestObject() {
return request;
}
@Override
public Class extends GCResponse> getResponseClass() {
return null;
}
}