From 0be10a47068f13b83152cfdabdab41e417b43cc9 Mon Sep 17 00:00:00 2001 From: Garlapati Anil Masthan Setty Date: Mon, 18 Nov 2024 19:12:19 +0530 Subject: [PATCH] Code reformatting applied --- src/main/zip/apt.groovy | 3 ++- src/main/zip/apt_key.groovy | 3 ++- src/main/zip/ashell.groovy | 3 ++- src/main/zip/command.groovy | 3 ++- src/main/zip/copy.groovy | 3 ++- src/main/zip/file.groovy | 3 ++- src/main/zip/getBuiltinAnsibleProperties.groovy | 3 ++- src/main/zip/get_url.groovy | 3 ++- src/main/zip/lineinfile.groovy | 3 ++- src/main/zip/pip.groovy | 3 ++- src/main/zip/service.groovy | 3 ++- src/main/zip/shell.groovy | 3 ++- src/main/zip/unarchive.groovy | 3 ++- 13 files changed, 26 insertions(+), 13 deletions(-) diff --git a/src/main/zip/apt.groovy b/src/main/zip/apt.groovy index 253671b..55c7663 100644 --- a/src/main/zip/apt.groovy +++ b/src/main/zip/apt.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/apt_key.groovy b/src/main/zip/apt_key.groovy index cb40820..60360c7 100644 --- a/src/main/zip/apt_key.groovy +++ b/src/main/zip/apt_key.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/ashell.groovy b/src/main/zip/ashell.groovy index 025451a..42b69dc 100644 --- a/src/main/zip/ashell.groovy +++ b/src/main/zip/ashell.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/command.groovy b/src/main/zip/command.groovy index 516ac60..99080ff 100644 --- a/src/main/zip/command.groovy +++ b/src/main/zip/command.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/copy.groovy b/src/main/zip/copy.groovy index 1128412..7a62bd3 100644 --- a/src/main/zip/copy.groovy +++ b/src/main/zip/copy.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/file.groovy b/src/main/zip/file.groovy index 2b17bb7..6afd496 100644 --- a/src/main/zip/file.groovy +++ b/src/main/zip/file.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/getBuiltinAnsibleProperties.groovy b/src/main/zip/getBuiltinAnsibleProperties.groovy index c3c0050..9e48ef2 100644 --- a/src/main/zip/getBuiltinAnsibleProperties.groovy +++ b/src/main/zip/getBuiltinAnsibleProperties.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/get_url.groovy b/src/main/zip/get_url.groovy index 3facb6d..438fc4f 100644 --- a/src/main/zip/get_url.groovy +++ b/src/main/zip/get_url.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/lineinfile.groovy b/src/main/zip/lineinfile.groovy index f9537e7..73d01a8 100644 --- a/src/main/zip/lineinfile.groovy +++ b/src/main/zip/lineinfile.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/pip.groovy b/src/main/zip/pip.groovy index e684d5d..6072159 100644 --- a/src/main/zip/pip.groovy +++ b/src/main/zip/pip.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/service.groovy b/src/main/zip/service.groovy index 7c006a0..787d981 100644 --- a/src/main/zip/service.groovy +++ b/src/main/zip/service.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/shell.groovy b/src/main/zip/shell.groovy index 5e06083..2c96172 100644 --- a/src/main/zip/shell.groovy +++ b/src/main/zip/shell.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties(); diff --git a/src/main/zip/unarchive.groovy b/src/main/zip/unarchive.groovy index b4372ea..6bb15e7 100644 --- a/src/main/zip/unarchive.groovy +++ b/src/main/zip/unarchive.groovy @@ -1,10 +1,11 @@ -import com.urbancode.air.plugin.tool.AirPluginTool /** * © Copyright IBM Corporation 2016, 2024. * This is licensed under the following license. * The Eclipse Public 1.0 License (http://www.eclipse.org/legal/epl-v10.html) * U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ +import com.urbancode.air.plugin.tool.AirPluginTool + def apTool = new AirPluginTool(this.args[0], this.args[1]) //assuming that args[0] is input props file and args[1] is output props file def props = apTool.getStepProperties();