Ajout du HttpClient
This commit is contained in:
20
src/ovh/alexisdelhaie/curling/dataSet/HeaderModel.java
Normal file
20
src/ovh/alexisdelhaie/curling/dataSet/HeaderModel.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user