github.com/jghiloni/cli@v6.28.1-0.20170628223758-0ce05fe032a2+incompatible/actor/v2action/uaa_client.go (about)

     1  package v2action
     2  
     3  import "code.cloudfoundry.org/cli/api/uaa"
     4  
     5  //go:generate counterfeiter . UAAClient
     6  
     7  type UAAClient interface {
     8  	Authenticate(username string, password string) (string, string, error)
     9  	CreateUser(username string, password string, origin string) (uaa.User, error)
    10  }