Commit 7b4cbab0 authored by Pelayo Torres's avatar Pelayo Torres
Browse files

Merge branch 'REL18-Routing_Service' into 'OCF64-rel17-to-rel18'

REL18 Routing Service

See merge request !58
parents 1a4e6423 e0f89aff
Loading
Loading
Loading
Loading
Loading
+29 −8
Original line number Diff line number Diff line
.dockerignore
.gitignore
.openapi-generator-ignore
.travis.yml
Dockerfile
README.md
git_push.sh
capif_routing_info/__init__.py
capif_routing_info/__main__.py
capif_routing_info/controllers/__init__.py
capif_routing_info/controllers/default_controller.py
capif_routing_info/controllers/security_controller_.py
capif_routing_info/controllers/security_controller.py
capif_routing_info/encoder.py
capif_routing_info/models/__init__.py
capif_routing_info/models/aef_location.py
capif_routing_info/models/aef_profile.py
capif_routing_info/models/base_model_.py
capif_routing_info/models/base_model.py
capif_routing_info/models/civic_address.py
capif_routing_info/models/communication_type.py
capif_routing_info/models/communication_type_any_of.py
capif_routing_info/models/custom_operation.py
capif_routing_info/models/data_format.py
capif_routing_info/models/data_format_any_of.py
capif_routing_info/models/ellipsoid_arc.py
capif_routing_info/models/gad_shape.py
capif_routing_info/models/geographic_area.py
capif_routing_info/models/geographical_coordinates.py
capif_routing_info/models/interface_description.py
capif_routing_info/models/invalid_param.py
capif_routing_info/models/ip_addr_range.py
capif_routing_info/models/ipv4_address_range.py
capif_routing_info/models/ipv4_address_range1.py
capif_routing_info/models/ipv6_addr1.py
capif_routing_info/models/ipv6_address_range.py
capif_routing_info/models/ipv6_address_range1.py
capif_routing_info/models/local2d_point_uncertainty_ellipse.py
capif_routing_info/models/local3d_point_uncertainty_ellipsoid.py
capif_routing_info/models/local_origin.py
capif_routing_info/models/operation.py
capif_routing_info/models/operation_any_of.py
capif_routing_info/models/point.py
capif_routing_info/models/point_altitude.py
capif_routing_info/models/point_altitude_uncertainty.py
capif_routing_info/models/point_uncertainty_circle.py
capif_routing_info/models/point_uncertainty_ellipse.py
capif_routing_info/models/polygon.py
capif_routing_info/models/problem_details.py
capif_routing_info/models/protocol.py
capif_routing_info/models/protocol_any_of.py
capif_routing_info/models/relative_cartesian_location.py
capif_routing_info/models/resource.py
capif_routing_info/models/routing_info.py
capif_routing_info/models/routing_rule.py
capif_routing_info/models/security_method.py
capif_routing_info/models/security_method_any_of.py
capif_routing_info/models/service_kpis.py
capif_routing_info/models/supported_gad_shapes.py
capif_routing_info/models/uncertainty_ellipse.py
capif_routing_info/models/uncertainty_ellipsoid.py
capif_routing_info/models/version.py
capif_routing_info/openapi/openapi.yaml
capif_routing_info/test/__init__.py
capif_routing_info/test/test_default_controller.py
capif_routing_info/typing_utils.py
capif_routing_info/util.py
git_push.sh
requirements.txt
setup.py
test-requirements.txt
+1 −1
Original line number Diff line number Diff line
5.3.0-SNAPSHOT
 No newline at end of file
7.5.0
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ To run the server, please execute the following from the root directory:

```
pip3 install -r requirements.txt
python3 -m capif_routing_info
python3 -m openapi_server
```

and open your browser to here:
+9 −2
Original line number Diff line number Diff line
from ..models.routing_info import RoutingInfo  # noqa: E501
import connexion
from typing import Dict
from typing import Tuple
from typing import Union

from openapi_server.models.problem_details import ProblemDetails  # noqa: E501
from openapi_server.models.routing_info import RoutingInfo  # noqa: E501
from openapi_server import util


def service_apis_service_api_id_get(service_api_id, aef_id, supp_feat=None):  # noqa: E501
@@ -13,6 +20,6 @@ def service_apis_service_api_id_get(service_api_id, aef_id, supp_feat=None): #
    :param supp_feat: To filter irrelevant responses related to unsupported features
    :type supp_feat: str

    :rtype: RoutingInfo
    :rtype: Union[RoutingInfo, Tuple[RoutingInfo, int], Tuple[RoutingInfo, int, Dict[str, str]]
    """
    return 'do some magic!'
+0 −0

File moved.

Loading