-
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.
Merge pull request #16 from gdi-be/generate-service-metadata
Initial setup to write service metadata
- Loading branch information
Showing
18 changed files
with
334 additions
and
177 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
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
2 changes: 1 addition & 1 deletion
2
...e_backend/model/json/CI_DateTypeCode.java → ...model/json/codelists/CI_DateTypeCode.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
2 changes: 1 addition & 1 deletion
2
...end/model/json/CI_OnLineFunctionCode.java → ...json/codelists/CI_OnLineFunctionCode.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
18 changes: 18 additions & 0 deletions
18
...main/java/de/terrestris/mde/mde_backend/model/json/codelists/CI_PresentationFormCode.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,18 @@ | ||
package de.terrestris.mde.mde_backend.model.json.codelists; | ||
|
||
public enum CI_PresentationFormCode { | ||
documentDigital, | ||
imageDigital, | ||
documentHardcopy, | ||
imageHardcopy, | ||
mapDigital, | ||
mapHardcopy, | ||
modelDigital, | ||
modelHardcopy, | ||
profileDigital, | ||
profileHardcopy, | ||
tableDigital, | ||
tableHardcopy, | ||
videoDigital, | ||
videoHardcopy | ||
} |
2 changes: 1 addition & 1 deletion
2
...e/mde_backend/model/json/CI_RoleCode.java → ...end/model/json/codelists/CI_RoleCode.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
21 changes: 21 additions & 0 deletions
21
...src/main/java/de/terrestris/mde/mde_backend/model/json/codelists/MD_CharacterSetCode.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,21 @@ | ||
package de.terrestris.mde.mde_backend.model.json.codelists; | ||
|
||
public enum MD_CharacterSetCode { | ||
ucs2, | ||
ucs4, | ||
utf7, | ||
utf8, | ||
utf16 | ||
// omitted because identifiers are not legal in java (and not used anyway) | ||
//8859part1, | ||
//8859part2, | ||
//8859part3, | ||
//8859part4, | ||
//8859part5, | ||
//8859part6, | ||
//8859part7, | ||
//8859part8, | ||
//8859part9, | ||
//8859part10, | ||
//8859part11 | ||
} |
2 changes: 1 addition & 1 deletion
2
...del/json/MD_MaintenanceFrequencyCode.java → ...odelists/MD_MaintenanceFrequencyCode.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
2 changes: 1 addition & 1 deletion
2
...ackend/model/json/MD_RestrictionCode.java → ...el/json/codelists/MD_RestrictionCode.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
20 changes: 20 additions & 0 deletions
20
...rvices/src/main/java/de/terrestris/mde/mde_backend/model/json/codelists/MD_ScopeCode.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,20 @@ | ||
package de.terrestris.mde.mde_backend.model.json.codelists; | ||
|
||
public enum MD_ScopeCode { | ||
attribute, | ||
attributeType, | ||
collectionHardware, | ||
collectionSession, | ||
dataset, | ||
series, | ||
nonGeographicDataset, | ||
dimensionGroup, | ||
feature, | ||
featureType, | ||
propertyType, | ||
fieldSession, | ||
software, | ||
service, | ||
model, | ||
tile | ||
} |
Oops, something went wrong.