<?php
/**
 * 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(
            'CreateExemptionFromEntryBan' => 'CreateExemptionFromEntryBan',
            'CreateExemptionFromEntryBanRequestType' => 'CreateExemptionFromEntryBanRequestType',
            'CreateExemptionFromEntryBanRequestBodyType' => 'CreateExemptionFromEntryBanRequestBodyType',
            'ArrayOfExemptionFromEntryBanAttachment' => 'ArrayOfExemptionFromEntryBanAttachment',
            'ExemptionFromEntryBanAttachment' => 'ExemptionFromEntryBanAttachment',
            'ExemptionFromEntryBan' => 'ExemptionFromEntryBan',
            'ArrayOfExemptionFromEntryBanRoad' => 'ArrayOfExemptionFromEntryBanRoad',
            'ExemptionFromEntryBanRoad' => 'ExemptionFromEntryBanRoad',
            'CreateExemptionFromEntryBanResponse' => 'CreateExemptionFromEntryBanResponse',
            'CreateExemptionFromEntryBanResponseType' => 'CreateExemptionFromEntryBanResponseType',
            'CreateExemptionFromEntryBanResponseBodyType' => 'CreateExemptionFromEntryBanResponseBodyType',
            'RequestMessageType' => 'RequestMessageType',
            'RequestHeaderType' => 'RequestHeaderType',
            'HeaderType' => 'HeaderType',
            'FaultHeaderType' => 'FaultHeaderType',
            'ResponseHeaderType' => 'ResponseHeaderType',
            'ResponseMessageType' => 'ResponseMessageType',
            'LCRBusinessLogicFaultInfoType' => 'LCRBusinessLogicFaultInfoType',
            'LCRFaultInfoType' => 'LCRFaultInfoType',
            'ArrayOfLCRFaultInfoType' => 'ArrayOfLCRFaultInfoType',
            'LCRSecurityFaultInfoType' => 'LCRSecurityFaultInfoType',
            'LCRSystemFaultInfoType' => 'LCRSystemFaultInfoType',
        );
    }
}
