<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

    <parameters>
        <parameter key="hateoas.generator.registry.class">Hateoas\UrlGenerator\UrlGeneratorRegistry</parameter>
        <parameter key="hateoas.generator.symfony.class">Hateoas\UrlGenerator\SymfonyUrlGenerator</parameter>
    </parameters>

    <services>
        <service id="hateoas.generator.registry" class="%hateoas.generator.registry.class%">
            <argument type="service" id="hateoas.generator.symfony" />
        </service>

        <service id="hateoas.generator.symfony" class="%hateoas.generator.symfony.class%">
            <argument type="service" id="router" />
        </service>
    </services>
</container>
