-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from europeana/EA-3950_improve_depiction_gene…
…ration improvements for generation and logging of depictions #EA-3950
- Loading branch information
Showing
4 changed files
with
74 additions
and
16 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
...g/src/test/java/eu/europeana/api/set/integration/migration/DepictionGenerationReport.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,35 @@ | ||
package eu.europeana.api.set.integration.migration; | ||
|
||
public class DepictionGenerationReport { | ||
int skipped = 0; | ||
int notGenerated = 0; | ||
int generated = 0; | ||
int getSkipped() { | ||
return skipped; | ||
} | ||
void setSkipped(int skipped) { | ||
this.skipped = skipped; | ||
} | ||
void increaseSkipped() { | ||
this.skipped++; | ||
} | ||
int getNotGenerated() { | ||
return notGenerated; | ||
} | ||
void setNotGenerated(int notGenerated) { | ||
this.notGenerated = notGenerated; | ||
} | ||
void increaseNotGenerated() { | ||
this.notGenerated++; | ||
} | ||
|
||
int getGenerated() { | ||
return generated; | ||
} | ||
void setGenerated(int generated) { | ||
this.generated = generated; | ||
} | ||
void increaseGenerated() { | ||
this.generated++; | ||
} | ||
} |
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