<?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(
            'getVesselSummary' => '\\StructType\\GetVesselSummary',
            'getVesselSummaryResponse' => '\\StructType\\GetVesselSummaryResponse',
            'getVesselSummaryResult' => '\\StructType\\GetVesselSummaryResult',
            'getVesselDocuments' => '\\StructType\\GetVesselDocuments',
            'getVesselDocumentsResponse' => '\\StructType\\GetVesselDocumentsResponse',
            'getVesselDocumentsResult' => '\\StructType\\GetVesselDocumentsResult',
            'getOperationControls' => '\\StructType\\GetOperationControls',
            'getOperationControlsResponse' => '\\StructType\\GetOperationControlsResponse',
            'getOperationControlsResult' => '\\StructType\\GetOperationControlsResult',
            'getVesselParticulars' => '\\StructType\\GetVesselParticulars',
            'getVesselParticularsResponse' => '\\StructType\\GetVesselParticularsResponse',
            'getVesselParticularsResult' => '\\StructType\\GetVesselParticularsResult',
            'getVesselDimensions' => '\\StructType\\GetVesselDimensions',
            'getVesselDimensionsResponse' => '\\StructType\\GetVesselDimensionsResponse',
            'getVesselDimensionsResult' => '\\StructType\\GetVesselDimensionsResult',
            'getVesselTonnage' => '\\StructType\\GetVesselTonnage',
            'getVesselTonnageResponse' => '\\StructType\\GetVesselTonnageResponse',
            'getVesselTonnageResult' => '\\StructType\\GetVesselTonnageResult',
            'getVesselCases' => '\\StructType\\GetVesselCases',
            'getVesselCasesResponse' => '\\StructType\\GetVesselCasesResponse',
            'getVesselCasesResult' => '\\StructType\\GetVesselCasesResult',
            'getVesselDeficiencies' => '\\StructType\\GetVesselDeficiencies',
            'getVesselDeficienciesResponse' => '\\StructType\\GetVesselDeficienciesResponse',
            'getVesselDeficienciesResult' => '\\StructType\\GetVesselDeficienciesResult',
            'getVesselSummaryXMLString' => '\\StructType\\GetVesselSummaryXMLString',
            'getVesselSummaryXMLStringResponse' => '\\StructType\\GetVesselSummaryXMLStringResponse',
            'getVesselDocumentsXMLString' => '\\StructType\\GetVesselDocumentsXMLString',
            'getVesselDocumentsXMLStringResponse' => '\\StructType\\GetVesselDocumentsXMLStringResponse',
            'getOperationControlsXMLString' => '\\StructType\\GetOperationControlsXMLString',
            'getOperationControlsXMLStringResponse' => '\\StructType\\GetOperationControlsXMLStringResponse',
            'getVesselParticularsXMLString' => '\\StructType\\GetVesselParticularsXMLString',
            'getVesselParticularsXMLStringResponse' => '\\StructType\\GetVesselParticularsXMLStringResponse',
            'getVesselDimensionsXMLString' => '\\StructType\\GetVesselDimensionsXMLString',
            'getVesselDimensionsXMLStringResponse' => '\\StructType\\GetVesselDimensionsXMLStringResponse',
            'getVesselTonnageXMLString' => '\\StructType\\GetVesselTonnageXMLString',
            'getVesselTonnageXMLStringResponse' => '\\StructType\\GetVesselTonnageXMLStringResponse',
            'getVesselCasesXMLString' => '\\StructType\\GetVesselCasesXMLString',
            'getVesselCasesXMLStringResponse' => '\\StructType\\GetVesselCasesXMLStringResponse',
            'getVesselDeficienciesXMLString' => '\\StructType\\GetVesselDeficienciesXMLString',
            'getVesselDeficienciesXMLStringResponse' => '\\StructType\\GetVesselDeficienciesXMLStringResponse',
        );
    }
}
