From 84a295c2b5df6221f4dc50ba89ec2c3aeefc6499 Mon Sep 17 00:00:00 2001 From: Livio Amstutz Date: Wed, 21 Oct 2020 10:38:38 +0200 Subject: [PATCH] update configuration.mock.go --- pkg/op/mock/configuration.mock.go | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pkg/op/mock/configuration.mock.go b/pkg/op/mock/configuration.mock.go index 88e9aa7..ece747c 100644 --- a/pkg/op/mock/configuration.mock.go +++ b/pkg/op/mock/configuration.mock.go @@ -89,6 +89,34 @@ func (mr *MockConfigurationMockRecorder) EndSessionEndpoint() *gomock.Call { return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "EndSessionEndpoint", reflect.TypeOf((*MockConfiguration)(nil).EndSessionEndpoint)) } +// GrantTypeJWTAuthorizationSupported mocks base method +func (m *MockConfiguration) GrantTypeJWTAuthorizationSupported() bool { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "GrantTypeJWTAuthorizationSupported") + ret0, _ := ret[0].(bool) + return ret0 +} + +// GrantTypeJWTAuthorizationSupported indicates an expected call of GrantTypeJWTAuthorizationSupported +func (mr *MockConfigurationMockRecorder) GrantTypeJWTAuthorizationSupported() *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GrantTypeJWTAuthorizationSupported", reflect.TypeOf((*MockConfiguration)(nil).GrantTypeJWTAuthorizationSupported)) +} + +// GrantTypeTokenExchangeSupported mocks base method +func (m *MockConfiguration) GrantTypeTokenExchangeSupported() bool { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "GrantTypeTokenExchangeSupported") + ret0, _ := ret[0].(bool) + return ret0 +} + +// GrantTypeTokenExchangeSupported indicates an expected call of GrantTypeTokenExchangeSupported +func (mr *MockConfigurationMockRecorder) GrantTypeTokenExchangeSupported() *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GrantTypeTokenExchangeSupported", reflect.TypeOf((*MockConfiguration)(nil).GrantTypeTokenExchangeSupported)) +} + // Issuer mocks base method func (m *MockConfiguration) Issuer() string { m.ctrl.T.Helper()