Ajout du HttpClient

This commit is contained in:
Alexis Delhaie
2019-10-17 21:54:50 +02:00
parent b65f631cb7
commit 3d09d37411
50 changed files with 405 additions and 180 deletions

View File

@@ -0,0 +1,20 @@
package ovh.alexisdelhaie.curling.dataSet;
public class HeaderModel {
private String key;
private String value;
public HeaderModel(String key, String value) {
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public String getValue() {
return value;
}
}