<?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(
            'logininfo' => '\\StructType\\Logininfo',
            'sessioninfo' => '\\StructType\\Sessioninfo',
            'security1' => '\\StructType\\Security1',
            'security2' => '\\StructType\\Security2',
            'timings' => '\\StructType\\Timings',
            'geometry' => '\\StructType\\Geometry',
            'GetSessionRequest' => '\\StructType\\GetSessionRequest',
            'GetSessionResponse' => '\\StructType\\GetSessionResponse',
            'Security' => '\\StructType\\Security',
            'GetLayerListRequest' => '\\StructType\\GetLayerListRequest',
            'Filter' => '\\StructType\\Filter',
            'GetLayerListResponse' => '\\StructType\\GetLayerListResponse',
            'Layer' => '\\StructType\\Layer',
            'GetLayerInfoRequest' => '\\StructType\\GetLayerInfoRequest',
            'GetLayerInfoResponse' => '\\StructType\\GetLayerInfoResponse',
            'Index' => '\\StructType\\Index',
            'Field' => '\\StructType\\Field',
            'Dataset' => '\\StructType\\Dataset',
            'GetLayerDataRequest' => '\\StructType\\GetLayerDataRequest',
            'Sort' => '\\StructType\\Sort',
            'GetLayerDataResponse' => '\\StructType\\GetLayerDataResponse',
            'Record' => '\\StructType\\Record',
            'VpsSeznamPlinovodovRequest' => '\\StructType\\VpsSeznamPlinovodovRequest',
            'VpsSeznamPlinovodovResponse' => '\\StructType\\VpsSeznamPlinovodovResponse',
            'Seznam' => '\\StructType\\Seznam',
            'Plinovod' => '\\StructType\\Plinovod',
            'VpsSeznamObjektovRequest' => '\\StructType\\VpsSeznamObjektovRequest',
            'VpsSeznamObjektovResponse' => '\\StructType\\VpsSeznamObjektovResponse',
            'Objekt' => '\\StructType\\Objekt',
        );
    }
}
