Skip to content

Commit d06a903

Browse files
authored
Add support for Kaniko and JIB (#512)
1 parent 4e50b66 commit d06a903

File tree

20 files changed

+831
-414
lines changed

20 files changed

+831
-414
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package org.jfrog.build.client;
2+
3+
import org.apache.http.Header;
4+
5+
/**
6+
* @author yahavi
7+
**/
8+
@SuppressWarnings("unused")
9+
public class DownloadResponse {
10+
public static final String SHA256_HEADER_NAME = "X-Checksum-Sha256";
11+
Header[] headers;
12+
String content;
13+
14+
public DownloadResponse() {
15+
}
16+
17+
public DownloadResponse(String content, Header[] headers) {
18+
this.headers = headers;
19+
this.content = content;
20+
}
21+
22+
public void setHeaders(Header[] headers) {
23+
this.headers = headers;
24+
}
25+
26+
public void setContent(String content) {
27+
this.content = content;
28+
}
29+
30+
public Header[] getHeaders() {
31+
return headers;
32+
}
33+
34+
public String getContent() {
35+
return content;
36+
}
37+
}

build-info-extractor-docker/src/main/java/org/jfrog/build/extractor/docker/extractor/BuildDockerCreate.java

-167
This file was deleted.

0 commit comments

Comments
 (0)