From 0afcd68b7f87a905469fb28f10bb1d07a55b822f Mon Sep 17 00:00:00 2001 From: L2JE Date: Thu, 19 Oct 2023 15:53:01 -0300 Subject: [PATCH] Added javadoc to isImportedExecution method --- .../plugins/azure/plugin/AzureFileStoragePlugin.groovy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy b/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy index b42f048..4d5bc44 100644 --- a/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy +++ b/src/main/groovy/com/rundeck/plugins/azure/plugin/AzureFileStoragePlugin.groovy @@ -131,6 +131,10 @@ class AzureFileStoragePlugin implements ExecutionFileStoragePlugin, ExecutionMul container.createIfNotExists() } + /** + * @param context execution context + * @return true if the given context has the expanded path of the log files in the `outputfilepath` variable + */ protected static boolean isImportedExecution(Map context){ return context != null && context.get("isRemoteFilePath") != null && context.get("isRemoteFilePath") == "true" }