-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CF-672: added properties to transaction detail and changed method ret…
…urning custom string data (#937)
- Loading branch information
Showing
3 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
...r_extensions_api/src/main/java/com/generalbytes/batm/server/extensions/ICustomString.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,26 @@ | ||
package com.generalbytes.batm.server.extensions; | ||
|
||
public interface ICustomString { | ||
|
||
/** | ||
* @return Name of custom string. | ||
*/ | ||
default String getName() { | ||
return null; | ||
} | ||
|
||
/** | ||
* @return Value of custom string. | ||
*/ | ||
default String getValue() { | ||
return null; | ||
} | ||
|
||
/** | ||
* @return Language in the ISO standard (for example 'en' for English, 'de' for German, 'de_CH' for Swiss German etc.). | ||
*/ | ||
default String getLanguage() { | ||
return null; | ||
} | ||
|
||
} |
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