(
organization string,
tenant string,
method string,
uri url.URL,
route string,
contentType string,
input stream.Stream,
parameters []ExecutionParameter,
authConfig map[string]interface{},
identityUri url.URL,
plugin plugin.CommandPlugin,
debug bool,
settings ExecutionSettings)
| 26 | } |
| 27 | |
| 28 | func NewExecutionContext( |
| 29 | organization string, |
| 30 | tenant string, |
| 31 | method string, |
| 32 | uri url.URL, |
| 33 | route string, |
| 34 | contentType string, |
| 35 | input stream.Stream, |
| 36 | parameters []ExecutionParameter, |
| 37 | authConfig map[string]interface{}, |
| 38 | identityUri url.URL, |
| 39 | plugin plugin.CommandPlugin, |
| 40 | debug bool, |
| 41 | settings ExecutionSettings) *ExecutionContext { |
| 42 | return &ExecutionContext{ |
| 43 | organization, |
| 44 | tenant, |
| 45 | method, |
| 46 | uri, |
| 47 | route, |
| 48 | contentType, |
| 49 | input, |
| 50 | parameters, |
| 51 | authConfig, |
| 52 | identityUri, |
| 53 | plugin, |
| 54 | debug, |
| 55 | settings, |
| 56 | } |
| 57 | } |
no outgoing calls
no test coverage detected