Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new BF "Batch - SEPA DD" #282

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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