-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
449 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
arc-core/src/main/java/fr/insee/arc/core/service/global/bo/NormeFichier.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 0 additions & 82 deletions
82
arc-core/src/main/java/fr/insee/arc/core/service/p2chargement/bo/FileAttributes.java
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
arc-core/src/main/java/fr/insee/arc/core/service/p2chargement/bo/FileAttributesCSV.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package fr.insee.arc.core.service.p2chargement.bo; | ||
|
||
public class FileAttributesCSV { | ||
|
||
|
||
private String[] headersV; | ||
private String[] headersI; | ||
|
||
|
||
public String[] getHeadersV() { | ||
return headersV; | ||
} | ||
|
||
|
||
public void setHeadersV(String[] headersV) { | ||
this.headersV = headersV; | ||
} | ||
|
||
|
||
public String[] getHeadersI() { | ||
return headersI; | ||
} | ||
|
||
|
||
public void setHeadersI(String[] headersI) { | ||
this.headersI = headersI; | ||
} | ||
|
||
|
||
} |
83 changes: 83 additions & 0 deletions
83
arc-core/src/main/java/fr/insee/arc/core/service/p2chargement/bo/FileIdCard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package fr.insee.arc.core.service.p2chargement.bo; | ||
|
||
import java.util.Date; | ||
|
||
import fr.insee.arc.core.service.global.dao.DateConversion; | ||
|
||
public class FileIdCard { | ||
|
||
|
||
private String fileName; | ||
private String idNorme; | ||
private String validite; | ||
private String periodicite; | ||
private final String integrationDate = DateConversion.queryDateConversion(new Date()); | ||
|
||
private FileIdCardChargement regleChargement; | ||
public FileIdCardChargement getRegleChargement() { | ||
return regleChargement; | ||
} | ||
public void setRegleChargement(FileIdCardChargement regleChargement) { | ||
this.regleChargement = regleChargement; | ||
} | ||
|
||
|
||
public FileIdCard(String idSource) { | ||
this.fileName = idSource; | ||
} | ||
|
||
public void setFileAttributes(String idNorme, String validite, String periodicite) { | ||
this.idNorme = idNorme; | ||
this.validite = validite; | ||
this.periodicite = periodicite; | ||
} | ||
|
||
|
||
public String getFileName() { | ||
return fileName; | ||
} | ||
|
||
|
||
public void setFileName(String fileName) { | ||
this.fileName = fileName; | ||
} | ||
|
||
|
||
public String getValidite() { | ||
return validite; | ||
} | ||
|
||
|
||
public void setValidite(String validite) { | ||
this.validite = validite; | ||
} | ||
|
||
|
||
public String getIntegrationDate() { | ||
return integrationDate; | ||
} | ||
|
||
|
||
public String getIdNorme() { | ||
return idNorme; | ||
} | ||
|
||
|
||
public void setIdNorme(String idNorme) { | ||
this.idNorme = idNorme; | ||
} | ||
|
||
|
||
public String getPeriodicite() { | ||
return periodicite; | ||
} | ||
|
||
|
||
public void setPeriodicite(String periodicite) { | ||
this.periodicite = periodicite; | ||
} | ||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.