(name string, cliConnection plugin.CliConnection)
| 104 | } |
| 105 | |
| 106 | func (c *DeployCommand) Initialize(name string, cliConnection plugin.CliConnection) { |
| 107 | c.BaseCommand.Initialize(name, cliConnection) |
| 108 | delegate := cfrestclient.NewCloudFoundryRestClient(cliConnection) |
| 109 | c.CfClient = resilient.NewResilientCloudFoundryClient(delegate, maxRetriesCount, retryIntervalInSeconds) |
| 110 | } |
| 111 | |
| 112 | // GetPluginCommand returns the plugin command details |
| 113 | func (c *DeployCommand) GetPluginCommand() plugin.Command { |
nothing calls this directly
no test coverage detected