-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into sync1.6toMaster
- Loading branch information
Showing
23 changed files
with
308 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
plugins { | ||
id("shared-build-conventions") | ||
id("shared-publish-conventions") | ||
} | ||
|
||
group = projectGroup | ||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
plugins { | ||
id("application") | ||
id("shared-build-conventions") | ||
} | ||
|
||
version = "1.0.0" | ||
|
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,7 @@ | ||
plugins { | ||
id("shared-build-conventions") | ||
} | ||
|
||
allprojects { | ||
apply plugin: 'shared-build-conventions' | ||
} |
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
plugins { | ||
id("java") | ||
id("com.generalbytes.gradle.main") | ||
id("shared-publish-conventions") | ||
} | ||
|
||
repositories { | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
plugins { | ||
id("shared-build-conventions") | ||
id("shared-publish-conventions") | ||
} | ||
|
||
group = projectGroup | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
plugins { | ||
id("shared-build-conventions") | ||
id("shared-publish-conventions") | ||
} | ||
|
||
group = projectGroup | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
plugins { | ||
id("shared-build-conventions") | ||
id("shared-publish-conventions") | ||
id("distribution") | ||
} | ||
|
||
|
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
102 changes: 102 additions & 0 deletions
102
...a/com/generalbytes/batm/server/extensions/watchlist/WatchListScanIdentityMatchesData.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,102 @@ | ||
/************************************************************************************* | ||
* Copyright (C) 2014-2024 GENERAL BYTES s.r.o. All rights reserved. | ||
* | ||
* This software may be distributed and modified under the terms of the GNU | ||
* General Public License version 2 (GPL2) as published by the Free Software | ||
* Foundation and appearing in the file GPL2.TXT included in the packaging of | ||
* this file. Please note that GPL2 Section 2[b] requires that all works based | ||
* on this software must also be made publicly available under the terms of | ||
* the GPL2 ("Copyleft"). | ||
* | ||
* Contact information | ||
* ------------------- | ||
* | ||
* GENERAL BYTES s.r.o. | ||
* Web : http://www.generalbytes.com | ||
* | ||
************************************************************************************/ | ||
package com.generalbytes.batm.server.extensions.watchlist; | ||
|
||
import java.io.Serializable; | ||
|
||
public class WatchListScanIdentityMatchesData implements Serializable { | ||
|
||
/** | ||
* Public ID of identity. | ||
*/ | ||
private String identityPublicId; | ||
|
||
/** | ||
* Code of WatchList. | ||
*/ | ||
private String watchListCode; | ||
|
||
/** | ||
* Unique identifier of the matching entity. | ||
*/ | ||
private String partyId; | ||
|
||
/** | ||
* Type of WatchList trigger. | ||
*/ | ||
private WatchListTrigger trigger; | ||
|
||
/** | ||
* Result of scan. | ||
*/ | ||
private WatchListScanResult scanResult; | ||
|
||
/** | ||
* Terminal serial number. It is available if the trigger is {@link WatchListTrigger#PRE_TRANSACTION}, otherwise null. | ||
*/ | ||
private String terminalSerialNumber; | ||
|
||
public String getIdentityPublicId() { | ||
return identityPublicId; | ||
} | ||
|
||
public void setIdentityPublicId(String identityPublicId) { | ||
this.identityPublicId = identityPublicId; | ||
} | ||
|
||
public String getWatchListCode() { | ||
return watchListCode; | ||
} | ||
|
||
public void setWatchListCode(String watchListCode) { | ||
this.watchListCode = watchListCode; | ||
} | ||
|
||
public String getPartyId() { | ||
return partyId; | ||
} | ||
|
||
public void setPartyId(String partyId) { | ||
this.partyId = partyId; | ||
} | ||
|
||
public WatchListTrigger getTrigger() { | ||
return trigger; | ||
} | ||
|
||
public void setTrigger(WatchListTrigger trigger) { | ||
this.trigger = trigger; | ||
} | ||
|
||
public WatchListScanResult getScanResult() { | ||
return scanResult; | ||
} | ||
|
||
public void setScanResult(WatchListScanResult scanResult) { | ||
this.scanResult = scanResult; | ||
} | ||
|
||
public String getTerminalSerialNumber() { | ||
return terminalSerialNumber; | ||
} | ||
|
||
public void setTerminalSerialNumber(String terminalSerialNumber) { | ||
this.terminalSerialNumber = terminalSerialNumber; | ||
} | ||
|
||
} |
26 changes: 26 additions & 0 deletions
26
.../src/main/java/com/generalbytes/batm/server/extensions/watchlist/WatchListScanResult.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 @@ | ||
/************************************************************************************* | ||
* Copyright (C) 2014-2024 GENERAL BYTES s.r.o. All rights reserved. | ||
* | ||
* This software may be distributed and modified under the terms of the GNU | ||
* General Public License version 2 (GPL2) as published by the Free Software | ||
* Foundation and appearing in the file GPL2.TXT included in the packaging of | ||
* this file. Please note that GPL2 Section 2[b] requires that all works based | ||
* on this software must also be made publicly available under the terms of | ||
* the GPL2 ("Copyleft"). | ||
* | ||
* Contact information | ||
* ------------------- | ||
* | ||
* GENERAL BYTES s.r.o. | ||
* Web : http://www.generalbytes.com | ||
* | ||
************************************************************************************/ | ||
package com.generalbytes.batm.server.extensions.watchlist; | ||
|
||
public enum WatchListScanResult { | ||
|
||
NO_MATCH, | ||
PARTIAL_MATCH, | ||
FULL_MATCH | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
...api/src/main/java/com/generalbytes/batm/server/extensions/watchlist/WatchListTrigger.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,27 @@ | ||
/************************************************************************************* | ||
* Copyright (C) 2014-2024 GENERAL BYTES s.r.o. All rights reserved. | ||
* | ||
* This software may be distributed and modified under the terms of the GNU | ||
* General Public License version 2 (GPL2) as published by the Free Software | ||
* Foundation and appearing in the file GPL2.TXT included in the packaging of | ||
* this file. Please note that GPL2 Section 2[b] requires that all works based | ||
* on this software must also be made publicly available under the terms of | ||
* the GPL2 ("Copyleft"). | ||
* | ||
* Contact information | ||
* ------------------- | ||
* | ||
* GENERAL BYTES s.r.o. | ||
* Web : http://www.generalbytes.com | ||
* | ||
************************************************************************************/ | ||
package com.generalbytes.batm.server.extensions.watchlist; | ||
|
||
public enum WatchListTrigger { | ||
|
||
MANUAL, | ||
PRE_TRANSACTION, | ||
PERIODIC, | ||
EXTENSION | ||
|
||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
plugins { | ||
id("shared-build-conventions") | ||
id("shared-publish-conventions") | ||
} | ||
|
||
group = projectGroup | ||
|
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
Oops, something went wrong.