forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oauth2_client_storage.go
62 lines (50 loc) · 2.41 KB
/
oauth2_client_storage.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/ory-am/fosite/handler/oauth2 (interfaces: ClientCredentialsGrantStorage)
package internal
import (
gomock "github.com/golang/mock/gomock"
fosite "github.com/ory-am/fosite"
context "golang.org/x/net/context"
)
// Mock of ClientCredentialsGrantStorage interface
type MockClientCredentialsGrantStorage struct {
ctrl *gomock.Controller
recorder *_MockClientCredentialsGrantStorageRecorder
}
// Recorder for MockClientCredentialsGrantStorage (not exported)
type _MockClientCredentialsGrantStorageRecorder struct {
mock *MockClientCredentialsGrantStorage
}
func NewMockClientCredentialsGrantStorage(ctrl *gomock.Controller) *MockClientCredentialsGrantStorage {
mock := &MockClientCredentialsGrantStorage{ctrl: ctrl}
mock.recorder = &_MockClientCredentialsGrantStorageRecorder{mock}
return mock
}
func (_m *MockClientCredentialsGrantStorage) EXPECT() *_MockClientCredentialsGrantStorageRecorder {
return _m.recorder
}
func (_m *MockClientCredentialsGrantStorage) CreateAccessTokenSession(_param0 context.Context, _param1 string, _param2 fosite.Requester) error {
ret := _m.ctrl.Call(_m, "CreateAccessTokenSession", _param0, _param1, _param2)
ret0, _ := ret[0].(error)
return ret0
}
func (_mr *_MockClientCredentialsGrantStorageRecorder) CreateAccessTokenSession(arg0, arg1, arg2 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "CreateAccessTokenSession", arg0, arg1, arg2)
}
func (_m *MockClientCredentialsGrantStorage) DeleteAccessTokenSession(_param0 context.Context, _param1 string) error {
ret := _m.ctrl.Call(_m, "DeleteAccessTokenSession", _param0, _param1)
ret0, _ := ret[0].(error)
return ret0
}
func (_mr *_MockClientCredentialsGrantStorageRecorder) DeleteAccessTokenSession(arg0, arg1 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "DeleteAccessTokenSession", arg0, arg1)
}
func (_m *MockClientCredentialsGrantStorage) GetAccessTokenSession(_param0 context.Context, _param1 string, _param2 fosite.Session) (fosite.Requester, error) {
ret := _m.ctrl.Call(_m, "GetAccessTokenSession", _param0, _param1, _param2)
ret0, _ := ret[0].(fosite.Requester)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockClientCredentialsGrantStorageRecorder) GetAccessTokenSession(arg0, arg1, arg2 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "GetAccessTokenSession", arg0, arg1, arg2)
}