github.com/optim-corp/cios-golang-sdk@v0.5.1/sdk/mock/auth.go (about)

     1  package ciossdmock
     2  
     3  import sdkmodel "github.com/optim-corp/cios-golang-sdk/model"
     4  
     5  type NoImplementAuth struct{}
     6  
     7  func (NoImplementAuth) GetAccessTokenByRefreshToken() (sdkmodel.AccessToken, sdkmodel.Scope, sdkmodel.TokenType, sdkmodel.ExpiresIn, error) {
     8  	panic("implement me")
     9  }
    10  
    11  func (NoImplementAuth) GetAccessTokenOnClient() (sdkmodel.AccessToken, sdkmodel.Scope, sdkmodel.TokenType, sdkmodel.ExpiresIn, error) {
    12  	panic("implement me")
    13  }
    14  
    15  func (NoImplementAuth) GetAccessTokenOnDevice() (sdkmodel.AccessToken, sdkmodel.Scope, sdkmodel.TokenType, sdkmodel.ExpiresIn, error) {
    16  	panic("implement me")
    17  }
    18  
    19  func (NoImplementAuth) SetClientSecret(clientSecret string) {
    20  	panic("implement me")
    21  }
    22  
    23  func (NoImplementAuth) SetClientId(clientId string) {
    24  	panic("implement me")
    25  }
    26  
    27  func (NoImplementAuth) SetRef(ref string) {
    28  	panic("implement me")
    29  }
    30  
    31  func (NoImplementAuth) SetAssertion(assertion string) {
    32  	panic("implement me")
    33  }
    34  
    35  func (NoImplementAuth) SetDebug(debug bool) {
    36  	panic("implement me")
    37  }
    38  
    39  func (NoImplementAuth) SetScope(scope string) {
    40  	panic("implement me")
    41  }