-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Peppol SBDH v2.0.1 and eDEC Code Lists v8.6
- Loading branch information
1 parent
fcedae7
commit 745b40e
Showing
5 changed files
with
51 additions
and
7 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
15 changes: 15 additions & 0 deletions
15
oxalis-test/src/main/java/network/oxalis/test/identifier/CountryIdentifierExample.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,15 @@ | ||
package network.oxalis.test.identifier; | ||
|
||
import network.oxalis.vefa.peppol.common.model.C1CountryIdentifier; | ||
|
||
public class CountryIdentifierExample { | ||
// The value of the country code MUST be provided according to ISO-3166-1 in the Alpha-2 notation (e.g. “BE” representing Belgium). | ||
public static final C1CountryIdentifier AU = C1CountryIdentifier.of("AU"); | ||
public static final C1CountryIdentifier BE = C1CountryIdentifier.of("BE"); | ||
public static final C1CountryIdentifier IN = C1CountryIdentifier.of("IN"); | ||
public static final C1CountryIdentifier JP = C1CountryIdentifier.of("JP"); | ||
public static final C1CountryIdentifier NO = C1CountryIdentifier.of("NO"); | ||
public static final C1CountryIdentifier SE = C1CountryIdentifier.of("SE"); | ||
public static final C1CountryIdentifier SG = C1CountryIdentifier.of("SG"); | ||
|
||
} |
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