(config coreconfig.Reader, gateway net.Gateway)
| 23 | } |
| 24 | |
| 25 | func NewCloudControllerRepository(config coreconfig.Reader, gateway net.Gateway) (repo CloudControllerRepository) { |
| 26 | repo.config = config |
| 27 | repo.gateway = gateway |
| 28 | return |
| 29 | } |
| 30 | |
| 31 | func (repo CloudControllerRepository) UpdatePassword(old string, new string) error { |
| 32 | uaaEndpoint := repo.config.UaaEndpoint() |
no outgoing calls