modif DataCsv.java et repertoir test
This commit is contained in:
parent
7abec14389
commit
ad0e5f090f
3 changed files with 109 additions and 0 deletions
29
src/main/java/fr/myny/data/ImportData.java
Normal file
29
src/main/java/fr/myny/data/ImportData.java
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package fr.myny.data;
|
||||
|
||||
public class ImportData {
|
||||
String url;
|
||||
|
||||
/**
|
||||
* Le constructeur de ImportData
|
||||
*/
|
||||
public ImportData(){
|
||||
|
||||
}
|
||||
/**
|
||||
* Le constructeur de ImportData
|
||||
* @param url string contenant l URL dou recuperer les fichiers csv
|
||||
*/
|
||||
public ImportData(String url){
|
||||
this.url=url;
|
||||
}
|
||||
|
||||
/**
|
||||
* La methode de recuperation de l URL
|
||||
*/
|
||||
public void getUrl(){
|
||||
}
|
||||
|
||||
public void unzip() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in a new issue