blob: a4b0b633e4e522a1fb6065ed853d70b30e44d390 [file] [log] [blame]
khenaidooab1f7bd2019-11-14 14:00:27 -05001/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
npujar1d86a522019-11-14 17:11:16 +053016
17package coreif
khenaidooab1f7bd2019-11-14 14:00:27 -050018
19import (
20 "context"
npujar1d86a522019-11-14 17:11:16 +053021
khenaidooab1f7bd2019-11-14 14:00:27 -050022 "github.com/opencord/voltha-protos/v2/go/voltha"
23)
24
npujar1d86a522019-11-14 17:11:16 +053025// AdapterManager represent adapter manager related methods
khenaidooab1f7bd2019-11-14 14:00:27 -050026type AdapterManager interface {
27 ListAdapters(ctx context.Context) (*voltha.Adapters, error)
28 GetAdapterName(deviceType string) (string, error)
29 GetDeviceType(deviceType string) *voltha.DeviceType
30 RegisterAdapter(adapter *voltha.Adapter, deviceTypes *voltha.DeviceTypes) *voltha.CoreInstance
31}