Commit 535bfa26 authored by manar's avatar manar
Browse files

Network-Adapters-Open5GCore: Add not impelemtned errors

parent 59deb989
Loading
Loading
Loading
Loading
+15 −3
Original line number Diff line number Diff line
@@ -47,3 +47,15 @@ class NetworkManager(BaseNetworkClient):
        flow_id = qos_support_map[session_info.qosProfile.root]
        subscription.flowInfo = build_flows(flow_id, session_info)
        subscription.ueIpv4Addr = "192.168.6.1"  # ToDo

    def add_core_specific_ti_parameters(
            self,
            traffic_influence_info: schemas.CreateTrafficInfluence,
            subscription: schemas.TrafficInfluSub,
    ):
        raise NotImplementedError("add_core_specific_ti_parameters not implemented for Open5GCore")

    def core_specific_traffic_influence_validation(
            self, traffic_influence_info: schemas.CreateTrafficInfluence
    ) -> None:
        raise NotImplementedError("core_specific_traffic_influence_validation not implemented for Open5GCore")
 No newline at end of file