blob: 976a83519890b3143eed4f773b43ef9e4c0f7eda [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package interceptors
import (
apiModel "github.com/apache/plc4x/plc4go/pkg/api/model"
)
// Note this file is a Helper for mockery to generate use mocks from other package
// Deprecated: don't use it in productive code
type PlcReadRequest interface {
apiModel.PlcReadRequest
ReaderExposer
ReadRequestInterceptorExposer
}
// Deprecated: don't use it in productive code
type PlcReadRequestResult interface {
apiModel.PlcReadRequestResult
}
// Deprecated: don't use it in productive code
type PlcReadResponse interface {
apiModel.PlcReadResponse
}
// Deprecated: don't use it in productive code
type PlcWriteRequest interface {
apiModel.PlcWriteRequest
WriterExposer
WriteRequestInterceptorExposer
}
// Deprecated: don't use it in productive code
type PlcWriteRequestResult interface {
apiModel.PlcWriteRequestResult
}
// Deprecated: don't use it in productive code
type PlcWriteResponse interface {
apiModel.PlcWriteResponse
}