UAAAuthentication wraps connections and adds authentication headers to all requests
| 32 | // UAAAuthentication wraps connections and adds authentication headers to all |
| 33 | // requests |
| 34 | type UAAAuthentication struct { |
| 35 | connection cloudcontroller.Connection |
| 36 | client UAAClient |
| 37 | cache TokenCache |
| 38 | } |
| 39 | |
| 40 | // NewUAAAuthentication returns a pointer to a UAAAuthentication wrapper with |
| 41 | // the client and a token cache. |
nothing calls this directly
no outgoing calls
no test coverage detected