<?php

namespace CfcalSDK;

/**
 * Class which returns the class map definition
 * @package
 */
class ClassMap
{
    /**
     * Returns the mapping between the WSDL Structs and generated Structs' classes
     * This array is sent to the \SoapClient when calling the WS
     * @return string[]
     */
    final public static function get()
    {
        return array(
            'ObjetPublicBase' => '\\CfcalSDK\\Entity\\ObjetPublicBase',
            'ResultatAppelWebservice' => '\\CfcalSDK\\Entity\\ResultatAppelWebservice',
            'ResultatOperationPublicBase' => '\\CfcalSDK\\Entity\\ResultatOperationPublicBase',
            'ObjetPublicOutilsBase' => '\\CfcalSDK\\Entity\\ObjetPublicOutilsBase',
            'ArrayOfMessage' => '\\CfcalSDK\\Array\\ArrayOfMessage',
            'Message' => '\\CfcalSDK\\Entity\\Message',
            'InformationsConnexion' => '\\CfcalSDK\\Entity\\InformationsConnexion',
            'ResultatConnexion' => '\\CfcalSDK\\Entity\\ResultatConnexion',
            'InformationsConnexionEspaceSecurise' => '\\CfcalSDK\\Entity\\InformationsConnexionEspaceSecurise',
            'RenvoyerResultatConnexion' => '\\CfcalSDK\\Entity\\RenvoyerResultatConnexion',
            'RenvoyerResultatConnexionResponse' => '\\CfcalSDK\\Entity\\RenvoyerResultatConnexionResponse',
            'RenvoyerResultatConnexionEspaceSecurise' => '\\CfcalSDK\\Entity\\RenvoyerResultatConnexionEspaceSecurise',
            'RenvoyerResultatConnexionEspaceSecuriseResponse' => '\\CfcalSDK\\Entity\\RenvoyerResultatConnexionEspaceSecuriseResponse',
        );
    }
}
