Skip to content

Commit

Permalink
unstable commit, docker test
Browse files Browse the repository at this point in the history
  • Loading branch information
Conor Flynn committed Feb 1, 2023
1 parent 2a98f6a commit a3750de
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public RequestFramework(String url, HashMap<String, String> properties, HashMap<
this.tags = tags;
}

public final Request getRequest(HashMap<String, String> properties, HashMap<String, String> headers) {
private final Request getRequest(HashMap<String, String> properties, HashMap<String, String> headers) {
HashMap<String, String> all_properties = new HashMap<String, String>();
HashMap<String, String> all_headers = new HashMap<String, String>();

Expand Down Expand Up @@ -90,6 +90,10 @@ public final Request getRequest(HashMap<String, String> properties, HashMap<Stri
public final String[] getTags() {
return this.tags;
}

public abstract void process(Request request);

protected void request(HashMap<String, String> properties, HashMap<String, String> headers) {

}

protected abstract void process(HashMap<String, String> properties, HashMap<String, String> headers);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package org.stream.external.requester;

import java.util.HashMap;

import okhttp3.Request;

public class RequestRecursive extends RequestFramework {

public RequestRecursive(String url, HashMap<String, String> properties, HashMap<String, String> headers,
String[] tags) {
super(url, properties, headers, tags);
}

public void process(HashMap<String, String> properties, HashMap<String, String> headers) {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package test.application;


public class TestRecursiveRequest {

public static void main(String[] args) {

}
}
Binary file not shown.

0 comments on commit a3750de

Please sign in to comment.