mock

package
v1.6.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 19, 2024 License: GPL-3.0 Imports: 8 Imported by: 0

Documentation

Overview

Package mock is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockExternalNodeIF

type MockExternalNodeIF struct {
	// contains filtered or unexported fields
}

MockExternalNodeIF is a mock of ExternalNodeIF interface

func NewMockExternalNodeIF

func NewMockExternalNodeIF(ctrl *gomock.Controller) *MockExternalNodeIF

NewMockExternalNodeIF creates a new mock instance

func (*MockExternalNodeIF) DeleteExternalNode

func (m *MockExternalNodeIF) DeleteExternalNode(auth model.Auth, id string) error

DeleteExternalNode mocks base method

func (*MockExternalNodeIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockExternalNodeIF) ListExternalNodes

func (m *MockExternalNodeIF) ListExternalNodes() []*externalnode.ExternalNode

ListExternalNodes mocks base method

func (*MockExternalNodeIF) NodeByName

func (m *MockExternalNodeIF) NodeByName(auth model.Auth, name string) (*externalnode.ExternalNode, error)

NodeByName mocks base method

func (*MockExternalNodeIF) PutExternalNodeInstance

func (m *MockExternalNodeIF) PutExternalNodeInstance(auth model.Auth, i *externalnode.ExternalNodeInstance) error

PutExternalNodeInstance mocks base method

func (*MockExternalNodeIF) QueryFromInstanceID

func (m *MockExternalNodeIF) QueryFromInstanceID(auth model.Auth, id string) (externalnode.ExternalQuery, error)

QueryFromInstanceID mocks base method

func (*MockExternalNodeIF) RegisterExternalNode

func (m *MockExternalNodeIF) RegisterExternalNode(auth model.Auth, n *externalnode.ExternalNode) error

RegisterExternalNode mocks base method

type MockExternalNodeIFMockRecorder

type MockExternalNodeIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockExternalNodeIFMockRecorder is the mock recorder for MockExternalNodeIF

func (*MockExternalNodeIFMockRecorder) DeleteExternalNode

func (mr *MockExternalNodeIFMockRecorder) DeleteExternalNode(auth, id interface{}) *gomock.Call

DeleteExternalNode indicates an expected call of DeleteExternalNode

func (*MockExternalNodeIFMockRecorder) ListExternalNodes

func (mr *MockExternalNodeIFMockRecorder) ListExternalNodes() *gomock.Call

ListExternalNodes indicates an expected call of ListExternalNodes

func (*MockExternalNodeIFMockRecorder) NodeByName

func (mr *MockExternalNodeIFMockRecorder) NodeByName(auth, name interface{}) *gomock.Call

NodeByName indicates an expected call of NodeByName

func (*MockExternalNodeIFMockRecorder) PutExternalNodeInstance

func (mr *MockExternalNodeIFMockRecorder) PutExternalNodeInstance(auth, i interface{}) *gomock.Call

PutExternalNodeInstance indicates an expected call of PutExternalNodeInstance

func (*MockExternalNodeIFMockRecorder) QueryFromInstanceID

func (mr *MockExternalNodeIFMockRecorder) QueryFromInstanceID(auth, id interface{}) *gomock.Call

QueryFromInstanceID indicates an expected call of QueryFromInstanceID

func (*MockExternalNodeIFMockRecorder) RegisterExternalNode

func (mr *MockExternalNodeIFMockRecorder) RegisterExternalNode(auth, n interface{}) *gomock.Call

RegisterExternalNode indicates an expected call of RegisterExternalNode

type MockFilesIF

type MockFilesIF struct {
	// contains filtered or unexported fields
}

MockFilesIF is a mock of FilesIF interface

func NewMockFilesIF

func NewMockFilesIF(ctrl *gomock.Controller) *MockFilesIF

NewMockFilesIF creates a new mock instance

func (*MockFilesIF) Close

func (m *MockFilesIF) Close() error

Close mocks base method

func (*MockFilesIF) Delete

func (m *MockFilesIF) Delete(path string) error

Delete mocks base method

func (*MockFilesIF) EXPECT

func (m *MockFilesIF) EXPECT() *MockFilesIFMockRecorder

EXPECT returns an object that allows the caller to indicate expected use

func (*MockFilesIF) Exists

func (m *MockFilesIF) Exists(path string) (bool, error)

Exists mocks base method

func (*MockFilesIF) Read

func (m *MockFilesIF) Read(path string, w io.Writer) error

Read mocks base method

func (*MockFilesIF) Write

func (m *MockFilesIF) Write(path string, r io.Reader) error

Write mocks base method

type MockFilesIFMockRecorder

type MockFilesIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockFilesIFMockRecorder is the mock recorder for MockFilesIF

func (*MockFilesIFMockRecorder) Close

func (mr *MockFilesIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockFilesIFMockRecorder) Delete

func (mr *MockFilesIFMockRecorder) Delete(path interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockFilesIFMockRecorder) Exists

func (mr *MockFilesIFMockRecorder) Exists(path interface{}) *gomock.Call

Exists indicates an expected call of Exists

func (*MockFilesIFMockRecorder) Read

func (mr *MockFilesIFMockRecorder) Read(path, w interface{}) *gomock.Call

Read indicates an expected call of Read

func (*MockFilesIFMockRecorder) Write

func (mr *MockFilesIFMockRecorder) Write(path, r interface{}) *gomock.Call

Write indicates an expected call of Write

type MockFormIF

type MockFormIF struct {
	// contains filtered or unexported fields
}

MockFormIF is a mock of FormIF interface

func NewMockFormIF

func NewMockFormIF(ctrl *gomock.Controller) *MockFormIF

NewMockFormIF creates a new mock instance

func (*MockFormIF) Close

func (m *MockFormIF) Close() error

Close mocks base method

func (*MockFormIF) DelComp

func (m *MockFormIF) DelComp(auth model.Auth, id string) error

DelComp mocks base method

func (*MockFormIF) Delete

func (m *MockFormIF) Delete(auth model.Auth, id string) error

Delete mocks base method

func (*MockFormIF) EXPECT

func (m *MockFormIF) EXPECT() *MockFormIFMockRecorder

EXPECT returns an object that allows the caller to indicate expected use

func (*MockFormIF) Get

func (m *MockFormIF) Get(auth model.Auth, id string) (*model.FormItem, error)

Get mocks base method

func (*MockFormIF) GetComp

func (m *MockFormIF) GetComp(auth model.Auth, id string) (*model.FormComponentItem, error)

GetComp mocks base method

func (*MockFormIF) List

func (m *MockFormIF) List(auth model.Auth, contains string, options storage.Options) ([]*model.FormItem, error)

List mocks base method

func (*MockFormIF) ListComp

func (m *MockFormIF) ListComp(auth model.Auth, contains string, options storage.Options) (map[string]*model.FormComponentItem, error)

ListComp mocks base method

func (*MockFormIF) Put

func (m *MockFormIF) Put(auth model.Auth, item *model.FormItem) error

Put mocks base method

func (*MockFormIF) PutComp

func (m *MockFormIF) PutComp(auth model.Auth, comp *model.FormComponentItem) error

PutComp mocks base method

func (*MockFormIF) Vars

func (m *MockFormIF) Vars(auth model.Auth, contains string, options storage.Options) ([]string, error)

Vars mocks base method

type MockFormIFMockRecorder

type MockFormIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockFormIFMockRecorder is the mock recorder for MockFormIF

func (*MockFormIFMockRecorder) Close

func (mr *MockFormIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockFormIFMockRecorder) DelComp

func (mr *MockFormIFMockRecorder) DelComp(auth, id interface{}) *gomock.Call

DelComp indicates an expected call of DelComp

func (*MockFormIFMockRecorder) Delete

func (mr *MockFormIFMockRecorder) Delete(auth, id interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockFormIFMockRecorder) Get

func (mr *MockFormIFMockRecorder) Get(auth, id interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockFormIFMockRecorder) GetComp

func (mr *MockFormIFMockRecorder) GetComp(auth, id interface{}) *gomock.Call

GetComp indicates an expected call of GetComp

func (*MockFormIFMockRecorder) List

func (mr *MockFormIFMockRecorder) List(auth, contains, options interface{}) *gomock.Call

List indicates an expected call of List

func (*MockFormIFMockRecorder) ListComp

func (mr *MockFormIFMockRecorder) ListComp(auth, contains, options interface{}) *gomock.Call

ListComp indicates an expected call of ListComp

func (*MockFormIFMockRecorder) Put

func (mr *MockFormIFMockRecorder) Put(auth, item interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockFormIFMockRecorder) PutComp

func (mr *MockFormIFMockRecorder) PutComp(auth, comp interface{}) *gomock.Call

PutComp indicates an expected call of PutComp

func (*MockFormIFMockRecorder) Vars

func (mr *MockFormIFMockRecorder) Vars(auth, contains, options interface{}) *gomock.Call

Vars indicates an expected call of Vars

type MockI18nIF

type MockI18nIF struct {
	// contains filtered or unexported fields
}

MockI18nIF is a mock of I18nIF interface

func NewMockI18nIF

func NewMockI18nIF(ctrl *gomock.Controller) *MockI18nIF

NewMockI18nIF creates a new mock instance

func (*MockI18nIF) Close

func (m *MockI18nIF) Close() error

Close mocks base method

func (*MockI18nIF) EXPECT

func (m *MockI18nIF) EXPECT() *MockI18nIFMockRecorder

EXPECT returns an object that allows the caller to indicate expected use

func (*MockI18nIF) Find

func (m *MockI18nIF) Find(keyContains, valueContains string, options storage.Options) (map[string]map[string]string, error)

Find mocks base method

func (*MockI18nIF) Get

func (m *MockI18nIF) Get(lang, key string, args ...string) (string, error)

Get mocks base method

func (*MockI18nIF) GetAll

func (m *MockI18nIF) GetAll(lang string) (map[string]string, error)

GetAll mocks base method

func (*MockI18nIF) GetAllLangs

func (m *MockI18nIF) GetAllLangs() ([]*model.Lang, error)

GetAllLangs mocks base method

func (*MockI18nIF) GetFallback

func (m *MockI18nIF) GetFallback() (string, error)

GetFallback mocks base method

func (*MockI18nIF) GetLangs

func (m *MockI18nIF) GetLangs(enabled bool) ([]*model.Lang, error)

GetLangs mocks base method

func (*MockI18nIF) HasLang

func (m *MockI18nIF) HasLang(lang string) bool

HasLang mocks base method

func (*MockI18nIF) Put

func (m *MockI18nIF) Put(lang, key, text string) error

Put mocks base method

func (*MockI18nIF) PutAll

func (m *MockI18nIF) PutAll(lang string, translations map[string]string) error

PutAll mocks base method

func (*MockI18nIF) PutFallback

func (m *MockI18nIF) PutFallback(lang string) error

PutFallback mocks base method

func (*MockI18nIF) PutLang

func (m *MockI18nIF) PutLang(lang string, enabled bool) error

PutLang mocks base method

type MockI18nIFMockRecorder

type MockI18nIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockI18nIFMockRecorder is the mock recorder for MockI18nIF

func (*MockI18nIFMockRecorder) Close

func (mr *MockI18nIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockI18nIFMockRecorder) Find

func (mr *MockI18nIFMockRecorder) Find(keyContains, valueContains, options interface{}) *gomock.Call

Find indicates an expected call of Find

func (*MockI18nIFMockRecorder) Get

func (mr *MockI18nIFMockRecorder) Get(lang, key interface{}, args ...interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockI18nIFMockRecorder) GetAll

func (mr *MockI18nIFMockRecorder) GetAll(lang interface{}) *gomock.Call

GetAll indicates an expected call of GetAll

func (*MockI18nIFMockRecorder) GetAllLangs

func (mr *MockI18nIFMockRecorder) GetAllLangs() *gomock.Call

GetAllLangs indicates an expected call of GetAllLangs

func (*MockI18nIFMockRecorder) GetFallback

func (mr *MockI18nIFMockRecorder) GetFallback() *gomock.Call

GetFallback indicates an expected call of GetFallback

func (*MockI18nIFMockRecorder) GetLangs

func (mr *MockI18nIFMockRecorder) GetLangs(enabled interface{}) *gomock.Call

GetLangs indicates an expected call of GetLangs

func (*MockI18nIFMockRecorder) HasLang

func (mr *MockI18nIFMockRecorder) HasLang(lang interface{}) *gomock.Call

HasLang indicates an expected call of HasLang

func (*MockI18nIFMockRecorder) Put

func (mr *MockI18nIFMockRecorder) Put(lang, key, text interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockI18nIFMockRecorder) PutAll

func (mr *MockI18nIFMockRecorder) PutAll(lang, translations interface{}) *gomock.Call

PutAll indicates an expected call of PutAll

func (*MockI18nIFMockRecorder) PutFallback

func (mr *MockI18nIFMockRecorder) PutFallback(lang interface{}) *gomock.Call

PutFallback indicates an expected call of PutFallback

func (*MockI18nIFMockRecorder) PutLang

func (mr *MockI18nIFMockRecorder) PutLang(lang, enabled interface{}) *gomock.Call

PutLang indicates an expected call of PutLang

type MockSessionIF

type MockSessionIF struct {
	// contains filtered or unexported fields
}

MockSessionIF is a mock of SessionIF interface

func NewMockSessionIF

func NewMockSessionIF(ctrl *gomock.Controller) *MockSessionIF

NewMockSessionIF creates a new mock instance

func (*MockSessionIF) Close

func (m *MockSessionIF) Close() error

Close mocks base method

func (*MockSessionIF) Delete

func (m *MockSessionIF) Delete(s *model.Session) error

Delete mocks base method

func (*MockSessionIF) DeleteTokenRequest

func (m *MockSessionIF) DeleteTokenRequest(r *model.TokenRequest) error

DeleteTokenRequest mocks base method

func (*MockSessionIF) DeleteValue

func (m *MockSessionIF) DeleteValue(key string) error

DeleteValue mocks base method

func (*MockSessionIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockSessionIF) Get

func (m *MockSessionIF) Get(sid string) (*model.Session, error)

Get mocks base method

func (*MockSessionIF) GetTokenRequest

func (m *MockSessionIF) GetTokenRequest(t model.TokenType, id string) (*model.TokenRequest, error)

GetTokenRequest mocks base method

func (*MockSessionIF) GetValue

func (m *MockSessionIF) GetValue(key string, v interface{}) error

GetValue mocks base method

func (*MockSessionIF) Put

func (m *MockSessionIF) Put(s *model.Session) error

Put mocks base method

func (*MockSessionIF) PutTokenRequest

func (m *MockSessionIF) PutTokenRequest(r *model.TokenRequest) error

PutTokenRequest mocks base method

func (*MockSessionIF) PutValue

func (m *MockSessionIF) PutValue(key string, v interface{}) error

PutValue mocks base method

type MockSessionIFMockRecorder

type MockSessionIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockSessionIFMockRecorder is the mock recorder for MockSessionIF

func (*MockSessionIFMockRecorder) Close

func (mr *MockSessionIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockSessionIFMockRecorder) Delete

func (mr *MockSessionIFMockRecorder) Delete(s interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockSessionIFMockRecorder) DeleteTokenRequest

func (mr *MockSessionIFMockRecorder) DeleteTokenRequest(r interface{}) *gomock.Call

DeleteTokenRequest indicates an expected call of DeleteTokenRequest

func (*MockSessionIFMockRecorder) DeleteValue

func (mr *MockSessionIFMockRecorder) DeleteValue(key interface{}) *gomock.Call

DeleteValue indicates an expected call of DeleteValue

func (*MockSessionIFMockRecorder) Get

func (mr *MockSessionIFMockRecorder) Get(sid interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockSessionIFMockRecorder) GetTokenRequest

func (mr *MockSessionIFMockRecorder) GetTokenRequest(t, id interface{}) *gomock.Call

GetTokenRequest indicates an expected call of GetTokenRequest

func (*MockSessionIFMockRecorder) GetValue

func (mr *MockSessionIFMockRecorder) GetValue(key, v interface{}) *gomock.Call

GetValue indicates an expected call of GetValue

func (*MockSessionIFMockRecorder) Put

func (mr *MockSessionIFMockRecorder) Put(s interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockSessionIFMockRecorder) PutTokenRequest

func (mr *MockSessionIFMockRecorder) PutTokenRequest(r interface{}) *gomock.Call

PutTokenRequest indicates an expected call of PutTokenRequest

func (*MockSessionIFMockRecorder) PutValue

func (mr *MockSessionIFMockRecorder) PutValue(key, v interface{}) *gomock.Call

PutValue indicates an expected call of PutValue

type MockSettingsIF

type MockSettingsIF struct {
	// contains filtered or unexported fields
}

MockSettingsIF is a mock of SettingsIF interface

func NewMockSettingsIF

func NewMockSettingsIF(ctrl *gomock.Controller) *MockSettingsIF

NewMockSettingsIF creates a new mock instance

func (*MockSettingsIF) Close

func (m *MockSettingsIF) Close() error

Close mocks base method

func (*MockSettingsIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockSettingsIF) Get

func (m *MockSettingsIF) Get() (*model.Settings, error)

Get mocks base method

func (*MockSettingsIF) Put

func (m *MockSettingsIF) Put(stngs *model.Settings) error

Put mocks base method

type MockSettingsIFMockRecorder

type MockSettingsIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockSettingsIFMockRecorder is the mock recorder for MockSettingsIF

func (*MockSettingsIFMockRecorder) Close

func (mr *MockSettingsIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockSettingsIFMockRecorder) Get

Get indicates an expected call of Get

func (*MockSettingsIFMockRecorder) Put

func (mr *MockSettingsIFMockRecorder) Put(stngs interface{}) *gomock.Call

Put indicates an expected call of Put

type MockSignatureRequestsIF

type MockSignatureRequestsIF struct {
	// contains filtered or unexported fields
}

MockSignatureRequestsIF is a mock of SignatureRequestsIF interface

func NewMockSignatureRequestsIF

func NewMockSignatureRequestsIF(ctrl *gomock.Controller) *MockSignatureRequestsIF

NewMockSignatureRequestsIF creates a new mock instance

func (*MockSignatureRequestsIF) Add

Add mocks base method

func (*MockSignatureRequestsIF) Close

func (m *MockSignatureRequestsIF) Close() error

Close mocks base method

func (*MockSignatureRequestsIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockSignatureRequestsIF) GetByHashAndSigner

func (m *MockSignatureRequestsIF) GetByHashAndSigner(hash, signatory string) (*[]model.SignatureRequestItem, error)

GetByHashAndSigner mocks base method

func (*MockSignatureRequestsIF) GetByID

func (m *MockSignatureRequestsIF) GetByID(docid, docpath string) (*[]model.SignatureRequestItem, error)

GetByID mocks base method

func (*MockSignatureRequestsIF) GetBySignatory

func (m *MockSignatureRequestsIF) GetBySignatory(ethAddr string) (*[]model.SignatureRequestItem, error)

GetBySignatory mocks base method

func (*MockSignatureRequestsIF) SetRejected

func (m *MockSignatureRequestsIF) SetRejected(docid, docpath, signatory string) error

SetRejected mocks base method

func (*MockSignatureRequestsIF) SetRevoked

func (m *MockSignatureRequestsIF) SetRevoked(docid, docpath, signatory string) error

SetRevoked mocks base method

type MockSignatureRequestsIFMockRecorder

type MockSignatureRequestsIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockSignatureRequestsIFMockRecorder is the mock recorder for MockSignatureRequestsIF

func (*MockSignatureRequestsIFMockRecorder) Add

func (mr *MockSignatureRequestsIFMockRecorder) Add(item interface{}) *gomock.Call

Add indicates an expected call of Add

func (*MockSignatureRequestsIFMockRecorder) Close

Close indicates an expected call of Close

func (*MockSignatureRequestsIFMockRecorder) GetByHashAndSigner

func (mr *MockSignatureRequestsIFMockRecorder) GetByHashAndSigner(hash, signatory interface{}) *gomock.Call

GetByHashAndSigner indicates an expected call of GetByHashAndSigner

func (*MockSignatureRequestsIFMockRecorder) GetByID

func (mr *MockSignatureRequestsIFMockRecorder) GetByID(docid, docpath interface{}) *gomock.Call

GetByID indicates an expected call of GetByID

func (*MockSignatureRequestsIFMockRecorder) GetBySignatory

func (mr *MockSignatureRequestsIFMockRecorder) GetBySignatory(ethAddr interface{}) *gomock.Call

GetBySignatory indicates an expected call of GetBySignatory

func (*MockSignatureRequestsIFMockRecorder) SetRejected

func (mr *MockSignatureRequestsIFMockRecorder) SetRejected(docid, docpath, signatory interface{}) *gomock.Call

SetRejected indicates an expected call of SetRejected

func (*MockSignatureRequestsIFMockRecorder) SetRevoked

func (mr *MockSignatureRequestsIFMockRecorder) SetRevoked(docid, docpath, signatory interface{}) *gomock.Call

SetRevoked indicates an expected call of SetRevoked

type MockTemplateIF

type MockTemplateIF struct {
	// contains filtered or unexported fields
}

MockTemplateIF is a mock of TemplateIF interface

func NewMockTemplateIF

func NewMockTemplateIF(ctrl *gomock.Controller) *MockTemplateIF

NewMockTemplateIF creates a new mock instance

func (*MockTemplateIF) AssetsKey

func (m *MockTemplateIF) AssetsKey() string

AssetsKey mocks base method

func (*MockTemplateIF) Close

func (m *MockTemplateIF) Close() error

Close mocks base method

func (*MockTemplateIF) Delete

func (m *MockTemplateIF) Delete(auth model.Auth, files storage.FilesIF, id string) error

Delete mocks base method

func (*MockTemplateIF) DeleteTemplate

func (m *MockTemplateIF) DeleteTemplate(auth model.Auth, files storage.FilesIF, id, lang string) error

DeleteTemplate mocks base method

func (*MockTemplateIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockTemplateIF) Get

func (m *MockTemplateIF) Get(auth model.Auth, id string) (*model.TemplateItem, error)

Get mocks base method

func (*MockTemplateIF) GetTemplate

func (m *MockTemplateIF) GetTemplate(auth model.Auth, id, lang string) (*file.IO, error)

GetTemplate mocks base method

func (*MockTemplateIF) List

func (m *MockTemplateIF) List(auth model.Auth, contains string, options storage.Options) ([]*model.TemplateItem, error)

List mocks base method

func (*MockTemplateIF) ProvideFileInfoFor

func (m *MockTemplateIF) ProvideFileInfoFor(auth model.Auth, id, lang string, fm *file.Meta) (*file.IO, error)

ProvideFileInfoFor mocks base method

func (*MockTemplateIF) Put

func (m *MockTemplateIF) Put(auth model.Auth, item *model.TemplateItem) error

Put mocks base method

func (*MockTemplateIF) PutVars

func (m *MockTemplateIF) PutVars(auth model.Auth, id, lang string, vars []string) error

PutVars mocks base method

func (*MockTemplateIF) Vars

func (m *MockTemplateIF) Vars(auth model.Auth, contains string, options storage.Options) ([]string, error)

Vars mocks base method

type MockTemplateIFMockRecorder

type MockTemplateIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockTemplateIFMockRecorder is the mock recorder for MockTemplateIF

func (*MockTemplateIFMockRecorder) AssetsKey

func (mr *MockTemplateIFMockRecorder) AssetsKey() *gomock.Call

AssetsKey indicates an expected call of AssetsKey

func (*MockTemplateIFMockRecorder) Close

func (mr *MockTemplateIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockTemplateIFMockRecorder) Delete

func (mr *MockTemplateIFMockRecorder) Delete(auth, files, id interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockTemplateIFMockRecorder) DeleteTemplate

func (mr *MockTemplateIFMockRecorder) DeleteTemplate(auth, files, id, lang interface{}) *gomock.Call

DeleteTemplate indicates an expected call of DeleteTemplate

func (*MockTemplateIFMockRecorder) Get

func (mr *MockTemplateIFMockRecorder) Get(auth, id interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockTemplateIFMockRecorder) GetTemplate

func (mr *MockTemplateIFMockRecorder) GetTemplate(auth, id, lang interface{}) *gomock.Call

GetTemplate indicates an expected call of GetTemplate

func (*MockTemplateIFMockRecorder) List

func (mr *MockTemplateIFMockRecorder) List(auth, contains, options interface{}) *gomock.Call

List indicates an expected call of List

func (*MockTemplateIFMockRecorder) ProvideFileInfoFor

func (mr *MockTemplateIFMockRecorder) ProvideFileInfoFor(auth, id, lang, fm interface{}) *gomock.Call

ProvideFileInfoFor indicates an expected call of ProvideFileInfoFor

func (*MockTemplateIFMockRecorder) Put

func (mr *MockTemplateIFMockRecorder) Put(auth, item interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockTemplateIFMockRecorder) PutVars

func (mr *MockTemplateIFMockRecorder) PutVars(auth, id, lang, vars interface{}) *gomock.Call

PutVars indicates an expected call of PutVars

func (*MockTemplateIFMockRecorder) Vars

func (mr *MockTemplateIFMockRecorder) Vars(auth, contains, options interface{}) *gomock.Call

Vars indicates an expected call of Vars

type MockUserDataIF

type MockUserDataIF struct {
	// contains filtered or unexported fields
}

MockUserDataIF is a mock of UserDataIF interface

func NewMockUserDataIF

func NewMockUserDataIF(ctrl *gomock.Controller) *MockUserDataIF

NewMockUserDataIF creates a new mock instance

func (*MockUserDataIF) AssetsKey

func (m *MockUserDataIF) AssetsKey() string

AssetsKey mocks base method

func (*MockUserDataIF) Close

func (m *MockUserDataIF) Close() error

Close mocks base method

func (*MockUserDataIF) Delete

func (m *MockUserDataIF) Delete(auth model.Auth, files storage.FilesIF, id string) error

Delete mocks base method

func (*MockUserDataIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockUserDataIF) Get

func (m *MockUserDataIF) Get(auth model.Auth, id string) (*model.UserDataItem, error)

Get mocks base method

func (*MockUserDataIF) GetAllFileInfosOf

func (m *MockUserDataIF) GetAllFileInfosOf(ud *model.UserDataItem) []*file.IO

GetAllFileInfosOf mocks base method

func (*MockUserDataIF) GetByWorkflow

func (m *MockUserDataIF) GetByWorkflow(auth model.Auth, wf *model.WorkflowItem, finished bool) (*model.UserDataItem, bool, error)

GetByWorkflow mocks base method

func (*MockUserDataIF) GetData

func (m *MockUserDataIF) GetData(auth model.Auth, id, dataPath string) (interface{}, error)

GetData mocks base method

func (*MockUserDataIF) GetDataAndFiles

func (m *MockUserDataIF) GetDataAndFiles(auth model.Auth, id, dataPath string) (interface{}, []string, error)

GetDataAndFiles mocks base method

func (*MockUserDataIF) GetDataFile

func (m *MockUserDataIF) GetDataFile(auth model.Auth, id, dataPath string) (*file.IO, error)

GetDataFile mocks base method

func (*MockUserDataIF) List

func (m *MockUserDataIF) List(auth model.Auth, contains string, options storage.Options, includeReadGranted bool) ([]*model.UserDataItem, error)

List mocks base method

func (*MockUserDataIF) NewFile

func (m *MockUserDataIF) NewFile(auth model.Auth, meta file.Meta) *file.IO

NewFile mocks base method

func (*MockUserDataIF) Put

func (m *MockUserDataIF) Put(auth model.Auth, item *model.UserDataItem) error

Put mocks base method

func (*MockUserDataIF) PutData

func (m *MockUserDataIF) PutData(auth model.Auth, id string, dataObj map[string]interface{}) error

PutData mocks base method

type MockUserDataIFMockRecorder

type MockUserDataIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockUserDataIFMockRecorder is the mock recorder for MockUserDataIF

func (*MockUserDataIFMockRecorder) AssetsKey

func (mr *MockUserDataIFMockRecorder) AssetsKey() *gomock.Call

AssetsKey indicates an expected call of AssetsKey

func (*MockUserDataIFMockRecorder) Close

func (mr *MockUserDataIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockUserDataIFMockRecorder) Delete

func (mr *MockUserDataIFMockRecorder) Delete(auth, files, id interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockUserDataIFMockRecorder) Get

func (mr *MockUserDataIFMockRecorder) Get(auth, id interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockUserDataIFMockRecorder) GetAllFileInfosOf

func (mr *MockUserDataIFMockRecorder) GetAllFileInfosOf(ud interface{}) *gomock.Call

GetAllFileInfosOf indicates an expected call of GetAllFileInfosOf

func (*MockUserDataIFMockRecorder) GetByWorkflow

func (mr *MockUserDataIFMockRecorder) GetByWorkflow(auth, wf, finished interface{}) *gomock.Call

GetByWorkflow indicates an expected call of GetByWorkflow

func (*MockUserDataIFMockRecorder) GetData

func (mr *MockUserDataIFMockRecorder) GetData(auth, id, dataPath interface{}) *gomock.Call

GetData indicates an expected call of GetData

func (*MockUserDataIFMockRecorder) GetDataAndFiles

func (mr *MockUserDataIFMockRecorder) GetDataAndFiles(auth, id, dataPath interface{}) *gomock.Call

GetDataAndFiles indicates an expected call of GetDataAndFiles

func (*MockUserDataIFMockRecorder) GetDataFile

func (mr *MockUserDataIFMockRecorder) GetDataFile(auth, id, dataPath interface{}) *gomock.Call

GetDataFile indicates an expected call of GetDataFile

func (*MockUserDataIFMockRecorder) List

func (mr *MockUserDataIFMockRecorder) List(auth, contains, options, includeReadGranted interface{}) *gomock.Call

List indicates an expected call of List

func (*MockUserDataIFMockRecorder) NewFile

func (mr *MockUserDataIFMockRecorder) NewFile(auth, meta interface{}) *gomock.Call

NewFile indicates an expected call of NewFile

func (*MockUserDataIFMockRecorder) Put

func (mr *MockUserDataIFMockRecorder) Put(auth, item interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockUserDataIFMockRecorder) PutData

func (mr *MockUserDataIFMockRecorder) PutData(auth, id, dataObj interface{}) *gomock.Call

PutData indicates an expected call of PutData

type MockUserIF

type MockUserIF struct {
	// contains filtered or unexported fields
}

MockUserIF is a mock of UserIF interface

func NewMockUserIF

func NewMockUserIF(ctrl *gomock.Controller) *MockUserIF

NewMockUserIF creates a new mock instance

func (*MockUserIF) Close

func (m *MockUserIF) Close() error

Close mocks base method

func (*MockUserIF) Count

func (m *MockUserIF) Count() (int, error)

Count mocks base method

func (*MockUserIF) CreateApiKey

func (m *MockUserIF) CreateApiKey(auth model.Auth, userId, apiKeyName string) (string, error)

CreateApiKey mocks base method

func (*MockUserIF) DeleteApiKey

func (m *MockUserIF) DeleteApiKey(auth model.Auth, userId, hiddenApiKey string) error

DeleteApiKey mocks base method

func (*MockUserIF) EXPECT

func (m *MockUserIF) EXPECT() *MockUserIFMockRecorder

EXPECT returns an object that allows the caller to indicate expected use

func (*MockUserIF) Get

func (m *MockUserIF) Get(auth model.Auth, id string) (*model.User, error)

Get mocks base method

func (*MockUserIF) GetBaseFilePath

func (m *MockUserIF) GetBaseFilePath() string

GetBaseFilePath mocks base method

func (*MockUserIF) GetByApiKey

func (m *MockUserIF) GetByApiKey(key string, id string) (*model.User, error)

GetByApiKey mocks base method

func (*MockUserIF) GetByBCAddress

func (m *MockUserIF) GetByBCAddress(bcAddress string) (*model.User, error)

GetByBCAddress mocks base method

func (*MockUserIF) GetByEmail

func (m *MockUserIF) GetByEmail(email string) (*model.User, error)

GetByEmail mocks base method

func (*MockUserIF) GetProfilePhoto

func (m *MockUserIF) GetProfilePhoto(auth model.Auth, id string, writer io.Writer) error

GetProfilePhoto mocks base method

func (*MockUserIF) List

func (m *MockUserIF) List(auth model.Auth, contains string, options storage.Options) ([]*model.User, error)

List mocks base method

func (*MockUserIF) Login

func (m *MockUserIF) Login(name, pw string) (*model.User, error)

Login mocks base method

func (*MockUserIF) Put

func (m *MockUserIF) Put(auth model.Auth, item *model.User) error

Put mocks base method

func (*MockUserIF) PutProfilePhoto

func (m *MockUserIF) PutProfilePhoto(auth model.Auth, id string, reader io.Reader) error

PutProfilePhoto mocks base method

func (*MockUserIF) PutPw

func (m *MockUserIF) PutPw(id, pass string) error

PutPw mocks base method

func (*MockUserIF) UpdateEmail

func (m *MockUserIF) UpdateEmail(id, email string) error

UpdateEmail mocks base method

type MockUserIFMockRecorder

type MockUserIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockUserIFMockRecorder is the mock recorder for MockUserIF

func (*MockUserIFMockRecorder) Close

func (mr *MockUserIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockUserIFMockRecorder) Count

func (mr *MockUserIFMockRecorder) Count() *gomock.Call

Count indicates an expected call of Count

func (*MockUserIFMockRecorder) CreateApiKey

func (mr *MockUserIFMockRecorder) CreateApiKey(auth, userId, apiKeyName interface{}) *gomock.Call

CreateApiKey indicates an expected call of CreateApiKey

func (*MockUserIFMockRecorder) DeleteApiKey

func (mr *MockUserIFMockRecorder) DeleteApiKey(auth, userId, hiddenApiKey interface{}) *gomock.Call

DeleteApiKey indicates an expected call of DeleteApiKey

func (*MockUserIFMockRecorder) Get

func (mr *MockUserIFMockRecorder) Get(auth, id interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockUserIFMockRecorder) GetBaseFilePath

func (mr *MockUserIFMockRecorder) GetBaseFilePath() *gomock.Call

GetBaseFilePath indicates an expected call of GetBaseFilePath

func (*MockUserIFMockRecorder) GetByApiKey

func (mr *MockUserIFMockRecorder) GetByApiKey(key interface{}, id interface{}) *gomock.Call

GetByApiKey indicates an expected call of GetByApiKey

func (*MockUserIFMockRecorder) GetByBCAddress

func (mr *MockUserIFMockRecorder) GetByBCAddress(bcAddress interface{}) *gomock.Call

GetByBCAddress indicates an expected call of GetByBCAddress

func (*MockUserIFMockRecorder) GetByEmail

func (mr *MockUserIFMockRecorder) GetByEmail(email interface{}) *gomock.Call

GetByEmail indicates an expected call of GetByEmail

func (*MockUserIFMockRecorder) GetProfilePhoto

func (mr *MockUserIFMockRecorder) GetProfilePhoto(auth, id, writer interface{}) *gomock.Call

GetProfilePhoto indicates an expected call of GetProfilePhoto

func (*MockUserIFMockRecorder) List

func (mr *MockUserIFMockRecorder) List(auth, contains, options interface{}) *gomock.Call

List indicates an expected call of List

func (*MockUserIFMockRecorder) Login

func (mr *MockUserIFMockRecorder) Login(name, pw interface{}) *gomock.Call

Login indicates an expected call of Login

func (*MockUserIFMockRecorder) Put

func (mr *MockUserIFMockRecorder) Put(auth, item interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockUserIFMockRecorder) PutProfilePhoto

func (mr *MockUserIFMockRecorder) PutProfilePhoto(auth, id, reader interface{}) *gomock.Call

PutProfilePhoto indicates an expected call of PutProfilePhoto

func (*MockUserIFMockRecorder) PutPw

func (mr *MockUserIFMockRecorder) PutPw(id, pass interface{}) *gomock.Call

PutPw indicates an expected call of PutPw

func (*MockUserIFMockRecorder) UpdateEmail

func (mr *MockUserIFMockRecorder) UpdateEmail(id, email interface{}) *gomock.Call

UpdateEmail indicates an expected call of UpdateEmail

type MockWorkflowIF

type MockWorkflowIF struct {
	// contains filtered or unexported fields
}

MockWorkflowIF is a mock of WorkflowIF interface

func NewMockWorkflowIF

func NewMockWorkflowIF(ctrl *gomock.Controller) *MockWorkflowIF

NewMockWorkflowIF creates a new mock instance

func (*MockWorkflowIF) Close

func (m *MockWorkflowIF) Close() error

Close mocks base method

func (*MockWorkflowIF) Delete

func (m *MockWorkflowIF) Delete(auth model.Auth, id string) error

Delete mocks base method

func (*MockWorkflowIF) DeleteExternalNode

func (m *MockWorkflowIF) DeleteExternalNode(auth model.Auth, id string) error

DeleteExternalNode mocks base method

func (*MockWorkflowIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockWorkflowIF) Get

func (m *MockWorkflowIF) Get(auth model.Auth, id string) (*model.WorkflowItem, error)

Get mocks base method

func (*MockWorkflowIF) GetList

func (m *MockWorkflowIF) GetList(auth model.Auth, id []string) ([]*model.WorkflowItem, error)

GetList mocks base method

func (*MockWorkflowIF) GetPublished

func (m *MockWorkflowIF) GetPublished(auth model.Auth, id string) (*model.WorkflowItem, error)

GetPublished mocks base method

func (*MockWorkflowIF) List

func (m *MockWorkflowIF) List(auth model.Auth, contains string, options storage.Options) ([]*model.WorkflowItem, error)

List mocks base method

func (*MockWorkflowIF) ListExternalNodes

func (m *MockWorkflowIF) ListExternalNodes() []*externalnode.ExternalNode

ListExternalNodes mocks base method

func (*MockWorkflowIF) ListPublished

func (m *MockWorkflowIF) ListPublished(auth model.Auth, contains string, options storage.Options) ([]*model.WorkflowItem, error)

ListPublished mocks base method

func (*MockWorkflowIF) NodeByName

func (m *MockWorkflowIF) NodeByName(auth model.Auth, name string) (*externalnode.ExternalNode, error)

NodeByName mocks base method

func (*MockWorkflowIF) Put

func (m *MockWorkflowIF) Put(auth model.Auth, item *model.WorkflowItem) error

Put mocks base method

func (*MockWorkflowIF) PutExternalNodeInstance

func (m *MockWorkflowIF) PutExternalNodeInstance(auth model.Auth, i *externalnode.ExternalNodeInstance) error

PutExternalNodeInstance mocks base method

func (*MockWorkflowIF) QueryFromInstanceID

func (m *MockWorkflowIF) QueryFromInstanceID(auth model.Auth, id string) (externalnode.ExternalNodeInstance, error)

QueryFromInstanceID mocks base method

func (*MockWorkflowIF) RegisterExternalNode

func (m *MockWorkflowIF) RegisterExternalNode(auth model.Auth, n *externalnode.ExternalNode) error

RegisterExternalNode mocks base method

type MockWorkflowIFMockRecorder

type MockWorkflowIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockWorkflowIFMockRecorder is the mock recorder for MockWorkflowIF

func (*MockWorkflowIFMockRecorder) Close

func (mr *MockWorkflowIFMockRecorder) Close() *gomock.Call

Close indicates an expected call of Close

func (*MockWorkflowIFMockRecorder) Delete

func (mr *MockWorkflowIFMockRecorder) Delete(auth, id interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockWorkflowIFMockRecorder) DeleteExternalNode

func (mr *MockWorkflowIFMockRecorder) DeleteExternalNode(auth, id interface{}) *gomock.Call

DeleteExternalNode indicates an expected call of DeleteExternalNode

func (*MockWorkflowIFMockRecorder) Get

func (mr *MockWorkflowIFMockRecorder) Get(auth, id interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockWorkflowIFMockRecorder) GetList

func (mr *MockWorkflowIFMockRecorder) GetList(auth, id interface{}) *gomock.Call

GetList indicates an expected call of GetList

func (*MockWorkflowIFMockRecorder) GetPublished

func (mr *MockWorkflowIFMockRecorder) GetPublished(auth, id interface{}) *gomock.Call

GetPublished indicates an expected call of GetPublished

func (*MockWorkflowIFMockRecorder) List

func (mr *MockWorkflowIFMockRecorder) List(auth, contains, options interface{}) *gomock.Call

List indicates an expected call of List

func (*MockWorkflowIFMockRecorder) ListExternalNodes

func (mr *MockWorkflowIFMockRecorder) ListExternalNodes() *gomock.Call

ListExternalNodes indicates an expected call of ListExternalNodes

func (*MockWorkflowIFMockRecorder) ListPublished

func (mr *MockWorkflowIFMockRecorder) ListPublished(auth, contains, options interface{}) *gomock.Call

ListPublished indicates an expected call of ListPublished

func (*MockWorkflowIFMockRecorder) NodeByName

func (mr *MockWorkflowIFMockRecorder) NodeByName(auth, name interface{}) *gomock.Call

NodeByName indicates an expected call of NodeByName

func (*MockWorkflowIFMockRecorder) Put

func (mr *MockWorkflowIFMockRecorder) Put(auth, item interface{}) *gomock.Call

Put indicates an expected call of Put

func (*MockWorkflowIFMockRecorder) PutExternalNodeInstance

func (mr *MockWorkflowIFMockRecorder) PutExternalNodeInstance(auth, i interface{}) *gomock.Call

PutExternalNodeInstance indicates an expected call of PutExternalNodeInstance

func (*MockWorkflowIFMockRecorder) QueryFromInstanceID

func (mr *MockWorkflowIFMockRecorder) QueryFromInstanceID(auth, id interface{}) *gomock.Call

QueryFromInstanceID indicates an expected call of QueryFromInstanceID

func (*MockWorkflowIFMockRecorder) RegisterExternalNode

func (mr *MockWorkflowIFMockRecorder) RegisterExternalNode(auth, n interface{}) *gomock.Call

RegisterExternalNode indicates an expected call of RegisterExternalNode

type MockWorkflowPaymentsIF

type MockWorkflowPaymentsIF struct {
	// contains filtered or unexported fields
}

MockWorkflowPaymentsIF is a mock of WorkflowPaymentsIF interface

func NewMockWorkflowPaymentsIF

func NewMockWorkflowPaymentsIF(ctrl *gomock.Controller) *MockWorkflowPaymentsIF

NewMockWorkflowPaymentsIF creates a new mock instance

func (*MockWorkflowPaymentsIF) All

All mocks base method

func (*MockWorkflowPaymentsIF) Cancel

func (m *MockWorkflowPaymentsIF) Cancel(paymentId, from string) error

Cancel mocks base method

func (*MockWorkflowPaymentsIF) Close

func (m *MockWorkflowPaymentsIF) Close() error

Close mocks base method

func (*MockWorkflowPaymentsIF) ConfirmPayment

func (m *MockWorkflowPaymentsIF) ConfirmPayment(txHash, from, to string, xes uint64) error

ConfirmPayment mocks base method

func (*MockWorkflowPaymentsIF) Delete

func (m *MockWorkflowPaymentsIF) Delete(paymentId string) error

Delete mocks base method

func (*MockWorkflowPaymentsIF) EXPECT

EXPECT returns an object that allows the caller to indicate expected use

func (*MockWorkflowPaymentsIF) Get

Get mocks base method

func (*MockWorkflowPaymentsIF) GetByTxHashAndStatusAndFromEthAddress

func (m *MockWorkflowPaymentsIF) GetByTxHashAndStatusAndFromEthAddress(txHash, status, from string) (*model.WorkflowPaymentItem, error)

GetByTxHashAndStatusAndFromEthAddress mocks base method

func (*MockWorkflowPaymentsIF) GetByWorkflowIdAndFromEthAddress

func (m *MockWorkflowPaymentsIF) GetByWorkflowIdAndFromEthAddress(workflowID, fromEthAddr string, statuses []string) (*model.WorkflowPaymentItem, error)

GetByWorkflowIdAndFromEthAddress mocks base method

func (*MockWorkflowPaymentsIF) Redeem

func (m *MockWorkflowPaymentsIF) Redeem(workflowId, from string) error

Redeem mocks base method

func (*MockWorkflowPaymentsIF) Remove

Remove mocks base method

func (*MockWorkflowPaymentsIF) Save

Save mocks base method

func (*MockWorkflowPaymentsIF) SetAbandonedToTimeoutBeforeTime

func (m *MockWorkflowPaymentsIF) SetAbandonedToTimeoutBeforeTime(beforeTime time.Time) error

SetAbandonedToTimeoutBeforeTime mocks base method

func (*MockWorkflowPaymentsIF) Update

func (m *MockWorkflowPaymentsIF) Update(paymentId, status, txHash, from string) error

Update mocks base method

type MockWorkflowPaymentsIFMockRecorder

type MockWorkflowPaymentsIFMockRecorder struct {
	// contains filtered or unexported fields
}

MockWorkflowPaymentsIFMockRecorder is the mock recorder for MockWorkflowPaymentsIF

func (*MockWorkflowPaymentsIFMockRecorder) All

All indicates an expected call of All

func (*MockWorkflowPaymentsIFMockRecorder) Cancel

func (mr *MockWorkflowPaymentsIFMockRecorder) Cancel(paymentId, from interface{}) *gomock.Call

Cancel indicates an expected call of Cancel

func (*MockWorkflowPaymentsIFMockRecorder) Close

Close indicates an expected call of Close

func (*MockWorkflowPaymentsIFMockRecorder) ConfirmPayment

func (mr *MockWorkflowPaymentsIFMockRecorder) ConfirmPayment(txHash, from, to, xes interface{}) *gomock.Call

ConfirmPayment indicates an expected call of ConfirmPayment

func (*MockWorkflowPaymentsIFMockRecorder) Delete

func (mr *MockWorkflowPaymentsIFMockRecorder) Delete(paymentId interface{}) *gomock.Call

Delete indicates an expected call of Delete

func (*MockWorkflowPaymentsIFMockRecorder) Get

func (mr *MockWorkflowPaymentsIFMockRecorder) Get(paymentId interface{}) *gomock.Call

Get indicates an expected call of Get

func (*MockWorkflowPaymentsIFMockRecorder) GetByTxHashAndStatusAndFromEthAddress

func (mr *MockWorkflowPaymentsIFMockRecorder) GetByTxHashAndStatusAndFromEthAddress(txHash, status, from interface{}) *gomock.Call

GetByTxHashAndStatusAndFromEthAddress indicates an expected call of GetByTxHashAndStatusAndFromEthAddress

func (*MockWorkflowPaymentsIFMockRecorder) GetByWorkflowIdAndFromEthAddress

func (mr *MockWorkflowPaymentsIFMockRecorder) GetByWorkflowIdAndFromEthAddress(workflowID, fromEthAddr, statuses interface{}) *gomock.Call

GetByWorkflowIdAndFromEthAddress indicates an expected call of GetByWorkflowIdAndFromEthAddress

func (*MockWorkflowPaymentsIFMockRecorder) Redeem

func (mr *MockWorkflowPaymentsIFMockRecorder) Redeem(workflowId, from interface{}) *gomock.Call

Redeem indicates an expected call of Redeem

func (*MockWorkflowPaymentsIFMockRecorder) Remove

func (mr *MockWorkflowPaymentsIFMockRecorder) Remove(payment interface{}) *gomock.Call

Remove indicates an expected call of Remove

func (*MockWorkflowPaymentsIFMockRecorder) Save

func (mr *MockWorkflowPaymentsIFMockRecorder) Save(item interface{}) *gomock.Call

Save indicates an expected call of Save

func (*MockWorkflowPaymentsIFMockRecorder) SetAbandonedToTimeoutBeforeTime

func (mr *MockWorkflowPaymentsIFMockRecorder) SetAbandonedToTimeoutBeforeTime(beforeTime interface{}) *gomock.Call

SetAbandonedToTimeoutBeforeTime indicates an expected call of SetAbandonedToTimeoutBeforeTime

func (*MockWorkflowPaymentsIFMockRecorder) Update

func (mr *MockWorkflowPaymentsIFMockRecorder) Update(paymentId, status, txHash, from interface{}) *gomock.Call

Update indicates an expected call of Update

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL