X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fsdl%2Ftypes.go;h=821f8e5dd8f59bf0c1d4fffb4e00b9d702a007eb;hb=82c726627010dca2467989ec36cac6626ae9943a;hp=355169921322b84dd913732d6b65c887a8f9411d;hpb=aaf8d396257a455247b24716a32b05fc3fd145c2;p=ric-plt%2Frtmgr.git diff --git a/pkg/sdl/types.go b/pkg/sdl/types.go index 3551699..821f8e5 100644 --- a/pkg/sdl/types.go +++ b/pkg/sdl/types.go @@ -14,6 +14,10 @@ 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. + + This source code is part of the near-RT RIC (RAN Intelligent Controller) + platform project (RICP). + ================================================================================== */ /* @@ -24,6 +28,7 @@ package sdl import "routing-manager/pkg/rtmgr" +import "routing-manager/pkg/models" //type readAll func(string) (*rtmgr.RicComponents, error) //type writeAll func(string, *rtmgr.RicComponents) error @@ -40,4 +45,8 @@ type Engine interface { ReadAll(string) (*rtmgr.RicComponents, error) WriteAll(string, *rtmgr.RicComponents) error WriteXApps(string, *[]rtmgr.XApp) error + WriteNewE2TInstance(string, *rtmgr.E2TInstance,string) error + WriteAssRANToE2TInstance(string, models.RanE2tMap) error + WriteDisAssRANFromE2TInstance(string, models.RanE2tMap) error + WriteDeleteE2TInstance(string, *models.E2tDeleteData) error }