From 450ae0a0389694bc7179069fae67f0c1723ca098 Mon Sep 17 00:00:00 2001 From: Matthias Kuhr Date: Wed, 26 Jul 2023 09:49:19 +0200 Subject: [PATCH 1/3] Add Workflow and Business Rules Services --- .../servicebinding/api/ServiceIdentifier.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java b/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java index 5294256..39160b9 100644 --- a/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java +++ b/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java @@ -41,6 +41,17 @@ public final class ServiceIdentifier @Nonnull public static final ServiceIdentifier AUDIT_LOG = of("auditlog-management"); + /** + * Represents the SAP Workflow Service. + */ + @Nonnull + public static final ServiceIdentifier WORKFLOW = of("workflow"); + /** + * Represents the SAP Business Rules Service. + */ + @Nonnull + public static final ServiceIdentifier BUSINESS_RULES = of("business-rules"); + /** * Returns an {@link ServiceIdentifier} based on the provided {@code id}. *

From 7e1ccc7b8015c59ac63e43ba2b6a0be55af96764 Mon Sep 17 00:00:00 2001 From: Matthias Kuhr Date: Thu, 27 Jul 2023 12:25:41 +0200 Subject: [PATCH 2/3] Fix URLs --- .../environment/servicebinding/api/ServiceIdentifier.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java b/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java index 39160b9..69b5427 100644 --- a/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java +++ b/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java @@ -42,12 +42,13 @@ public final class ServiceIdentifier public static final ServiceIdentifier AUDIT_LOG = of("auditlog-management"); /** - * Represents the SAP Workflow Service. + * Represents the SAP Workflow Service for Cloud Foundry. */ @Nonnull public static final ServiceIdentifier WORKFLOW = of("workflow"); + /** - * Represents the SAP Business Rules Service. + * Represents the SAP Business Rules Service for Cloud Foundry. */ @Nonnull public static final ServiceIdentifier BUSINESS_RULES = of("business-rules"); From 629ebf26b6b3114739776ec145aa7a001276ce95 Mon Sep 17 00:00:00 2001 From: Matthias Kuhr Date: Thu, 27 Jul 2023 12:50:02 +0200 Subject: [PATCH 3/3] Formatting --- .../environment/servicebinding/api/ServiceIdentifier.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java b/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java index 69b5427..8d211f8 100644 --- a/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java +++ b/api-parent/core-api/src/main/java/com/sap/cloud/environment/servicebinding/api/ServiceIdentifier.java @@ -42,13 +42,15 @@ public final class ServiceIdentifier public static final ServiceIdentifier AUDIT_LOG = of("auditlog-management"); /** - * Represents the SAP Workflow Service for Cloud Foundry. + * Represents the SAP Workflow Service for Cloud + * Foundry. */ @Nonnull public static final ServiceIdentifier WORKFLOW = of("workflow"); /** - * Represents the SAP Business Rules Service for Cloud Foundry. + * Represents the SAP Business Rules Service for + * Cloud Foundry. */ @Nonnull public static final ServiceIdentifier BUSINESS_RULES = of("business-rules");