From 91cc43273854c2c0f96f4bdb591d5528785c34ac Mon Sep 17 00:00:00 2001 From: Matthias Kuhr Date: Tue, 7 Oct 2025 10:19:14 +0200 Subject: [PATCH] [Destinations] Improve Options Class --- .../connectivity/DestinationServiceOptionsAugmenter.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cloudplatform/connectivity-destination-service/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/DestinationServiceOptionsAugmenter.java b/cloudplatform/connectivity-destination-service/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/DestinationServiceOptionsAugmenter.java index 5f5016a17..50528848d 100644 --- a/cloudplatform/connectivity-destination-service/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/DestinationServiceOptionsAugmenter.java +++ b/cloudplatform/connectivity-destination-service/src/main/java/com/sap/cloud/sdk/cloudplatform/connectivity/DestinationServiceOptionsAugmenter.java @@ -163,8 +163,13 @@ public enum CrossLevelScope private final String identifier; + /** + * Return the suffix to be appended to e.g. a destination or fragment name. + * + * @return The suffix including the leading '@' character. + */ @Nonnull - String getSuffix() + public String getSuffix() { return "@" + identifier; }