github.com/mook-as/cf-cli@v7.0.0-beta.28.0.20200120190804-b91c115fae48+incompatible/actor/v3action/uaa_client.go (about)

     1  package v3action
     2  
     3  import "code.cloudfoundry.org/cli/api/uaa/constant"
     4  
     5  //go:generate counterfeiter . UAAClient
     6  
     7  type UAAClient interface {
     8  	Authenticate(credentials map[string]string, origin string, grantType constant.GrantType) (string, string, error)
     9  	GetSSHPasscode(accessToken string, sshOAuthClient string) (string, error)
    10  	LoginPrompts() map[string][]string
    11  }