Skip to content

Commit

Permalink
Merge pull request #282 from Backbase/feature/MM-1548_sepadd
Browse files Browse the repository at this point in the history
new BF "Batch - SEPA DD"
  • Loading branch information
michalkozak authored Jan 24, 2024
2 parents a421136 + 4dcf1ff commit 8a39777
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ private CommonConstants() {
public static final String BATCH_ACH_REVERSAL = "Batch - ACH Reversal";
public static final String BATCH_INTRACOMPANY = "Batch - Intracompany Payments";
public static final String BATCH_SEPA_CT_FUNCTION_NAME = "Batch - SEPA CT";
public static final String BATCH_SEPA_DD_FUNCTION_NAME = "Batch - SEPA DD";

public static final String PRIVILEGE_CREATE = "create";
public static final String PRIVILEGE_VIEW = "view";
public static final String PROPERTY_INGEST_ACCESS_CONTROL = "ingest.access.control";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import static com.backbase.ct.bbfuel.data.CommonConstants.BATCH_ACH_REVERSAL;
import static com.backbase.ct.bbfuel.data.CommonConstants.BATCH_INTRACOMPANY;
import static com.backbase.ct.bbfuel.data.CommonConstants.BATCH_SEPA_CT_FUNCTION_NAME;
import static com.backbase.ct.bbfuel.data.CommonConstants.BATCH_SEPA_DD_FUNCTION_NAME;
import static com.backbase.ct.bbfuel.data.CommonConstants.BATCH_TEMPLATES;
import static com.backbase.ct.bbfuel.data.CommonConstants.SEPA_CT_FUNCTION_NAME;
import static com.backbase.ct.bbfuel.data.CommonConstants.SEPA_CT_INTRACOMPANY_FUNCTION_NAME;
Expand Down Expand Up @@ -46,6 +47,7 @@ public final class PaymentsFunctionService {
BATCH_ACH_REVERSAL,
BATCH_INTRACOMPANY,
BATCH_SEPA_CT_FUNCTION_NAME,
BATCH_SEPA_DD_FUNCTION_NAME,
BATCH_TEMPLATES
)
);
Expand Down
33 changes: 33 additions & 0 deletions src/main/resources/data/job-profiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,15 @@
"cancel"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view",
"create",
"delete",
"approve"
]
},
{
"businessFunction": "Batch - ACH Debit",
"privileges": [
Expand Down Expand Up @@ -796,6 +805,15 @@
"cancel"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view",
"create",
"delete",
"approve"
]
},
{
"businessFunction": "Batch - ACH Debit",
"privileges": [
Expand Down Expand Up @@ -1276,6 +1294,15 @@
"cancel"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view",
"create",
"delete",
"approve"
]
},
{
"businessFunction": "Batch - ACH Credit",
"privileges": [
Expand Down Expand Up @@ -1598,6 +1625,12 @@
"view"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view"
]
},
{
"businessFunction": "Batch - ACH Debit",
"privileges": [
Expand Down
33 changes: 33 additions & 0 deletions src/test/resources/data/job-profiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,15 @@
"cancel"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view",
"create",
"delete",
"approve"
]
},
{
"businessFunction": "Batch - ACH Debit",
"privileges": [
Expand Down Expand Up @@ -796,6 +805,15 @@
"cancel"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view",
"create",
"delete",
"approve"
]
},
{
"businessFunction": "Batch - ACH Debit",
"privileges": [
Expand Down Expand Up @@ -1276,6 +1294,15 @@
"cancel"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view",
"create",
"delete",
"approve"
]
},
{
"businessFunction": "Batch - ACH Credit",
"privileges": [
Expand Down Expand Up @@ -1598,6 +1625,12 @@
"view"
]
},
{
"businessFunction": "Batch - SEPA DD",
"privileges": [
"view"
]
},
{
"businessFunction": "Batch - ACH Debit",
"privileges": [
Expand Down

0 comments on commit 8a39777

Please sign in to comment.