-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MET-5960 pull latest changes from branch 'develop' into feat/MET-5960…
…_debias_algorithm_for_detection
- Loading branch information
Showing
240 changed files
with
920 additions
and
32,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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
32 changes: 32 additions & 0 deletions
32
...common/metis-common-utils/src/main/java/eu/europeana/metis/utils/DepublicationReason.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,32 @@ | ||
package eu.europeana.metis.utils; | ||
|
||
/** | ||
* Enum for depublication reason. | ||
*/ | ||
public enum DepublicationReason { | ||
|
||
BROKEN_MEDIA_LINKS("Broken media links", "http://data.europeana.eu/vocabulary/depublicationReason/contentTier0"), | ||
GDPR("GDPR", "http://data.europeana.eu/vocabulary/depublicationReason/gdpr"), | ||
PERMISSION_ISSUES("Permission issues", "http://data.europeana.eu/vocabulary/depublicationReason/noPermission"), | ||
SENSITIVE_CONTENT("Sensitive content", "http://data.europeana.eu/vocabulary/depublicationReason/sensitiveContent"), | ||
REMOVED_DATA_AT_SOURCE("Removed data at source", "http://data.europeana.eu/vocabulary/depublicationReason/sourceRemoval"), | ||
GENERIC("Generic", "http://data.europeana.eu/vocabulary/depublicationReason/generic"), | ||
UNKNOWN("Unknown", "http://data.europeana.eu/vocabulary/depublicationReason/unknown"); | ||
|
||
private final String valueAsString; | ||
private final String url; | ||
|
||
DepublicationReason(String valueAsString, String url) { | ||
this.valueAsString = valueAsString; | ||
this.url = url; | ||
} | ||
|
||
@Override | ||
public String toString(){ | ||
return valueAsString; | ||
} | ||
|
||
public String getUrl() { | ||
return url; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
...e/metis-core-common/src/main/java/eu/europeana/metis/core/common/CountryDeserializer.java
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
...ore/metis-core-common/src/main/java/eu/europeana/metis/core/common/CountrySerializer.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
metis-core/metis-core-common/src/main/java/eu/europeana/metis/core/common/DaoFieldNames.java
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
...metis-core-common/src/main/java/eu/europeana/metis/core/common/JavaTimeSerialization.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.