summaryrefslogtreecommitdiffstats
path: root/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java
diff options
context:
space:
mode:
Diffstat (limited to 'mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java')
-rw-r--r--mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java b/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java
index ab48ada..f81da68 100644
--- a/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java
+++ b/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/ExternalCertificateDataFactoryService.java
@@ -30,21 +30,19 @@ import org.springframework.stereotype.Service;
/**
* @author : Ravi Mantena
- * @date 10/16/2020
- * Application: ONAP - Blueprint Generator
- * Common ONAP Service used by ONAP and DMAAP Blueprint to add External Certificate Data Factory
+ * @date 10/16/2020 Application: ONAP - Blueprint Generator Common ONAP Service to add External
+ * Certificate Data Factory
*/
-
-
@Service
public abstract class ExternalCertificateDataFactoryService {
- // Method to concatenate Constant with field
+ // Method to concatenate Constant with field
protected static GetInput createPrefixedGetInput(String fieldName) {
return new GetInput(addPrefix(fieldName));
}
// Method to concatenate the Constant INPUT_PREFIX to the input field
- protected static String addPrefix(String fieldName) { return Constants.INPUT_PREFIX + fieldName; }
-
+ protected static String addPrefix(String fieldName) {
+ return Constants.INPUT_PREFIX + fieldName;
+ }
}