在哪里可以找到 Jenkins 的“input()”方法的源代码?

Where to find the source code for Jenkins' `input()` method?

Jenkins 是开源的。但是,我找不到 Jenkins ref: input and example below. I looked at Jenkins source codeinput() 的源代码以及 Groovy 的参考,但找不到。 在哪里可以找到此功能的源代码?我需要 link.

用法示例:


    timeout(time: 2, unit: 'MINUTES') {

         r = input(message: 'message', submitter: "id1", submitterParameter: 'who', parameter: 'a,b')

         println('Responded by: ' + r.toString())
      }

我相信这个手指来自可以在这里找到的插件:

https://github.com/jenkinsci/pipeline-input-step-plugin