-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a bug in associating Jore4 routes with Jore4 lines.
Track Jore4 line identifiers in `network_line_headers` table instead of `network_lines` table because a Jore4 Line is created for each Jore3 line header instance.
- Loading branch information
Showing
32 changed files
with
687 additions
and
512 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
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
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
10 changes: 10 additions & 0 deletions
10
...a/fi/hsl/jore/importer/feature/batch/line_header/support/ILineHeaderImportRepository.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 |
---|---|---|
@@ -1,8 +1,18 @@ | ||
package fi.hsl.jore.importer.feature.batch.line_header.support; | ||
|
||
import fi.hsl.jore.importer.feature.batch.common.IImportRepository; | ||
import fi.hsl.jore.importer.feature.network.line.dto.PersistableLineIdMapping; | ||
import fi.hsl.jore.importer.feature.network.line_header.dto.Jore3LineHeader; | ||
import fi.hsl.jore.importer.feature.network.line_header.dto.generated.LineHeaderPK; | ||
import io.vavr.collection.List; | ||
|
||
public interface ILineHeaderImportRepository extends IImportRepository<Jore3LineHeader, LineHeaderPK> { | ||
|
||
/** | ||
* Sets the Jore 4 ids which identifies the line in the Jore 4 database. | ||
* | ||
* @param idMappings The information that's required to set the Jore 4 ids | ||
* of lines. | ||
*/ | ||
void setJore4Ids(List<PersistableLineIdMapping> idMappings); | ||
} |
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
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
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
Oops, something went wrong.