/** * @author ETSI / STF545 * @version $URL$ * $Id$ * @desc Test System module for ITS PKI * @copyright ETSI Copyright Notification * No part may be reproduced except as authorized by written permission. * The copyright and the foregoing restriction extend to reproduction in all media. * All rights reserved. * */ module LibItsPki_TestSystem { // LibItsCommon import from LibItsCommon_TestSystem all; // LibIts import from IEEE1609dot2BaseTypes language "ASN.1:1997" all; import from IEEE1609dot2 language "ASN.1:1997" all; import from EtsiTs102941BaseTypes language "ASN.1:1997" all; import from EtsiTs102941TypesEnrolment language "ASN.1:1997" all; import from EtsiTs102941MessagesItss language "ASN.1:1997" all; import from EtsiTs103097Module language "ASN.1:1997" all; // LibSecurity import from LibItsSecurity_TestSystem all; // LibCam import from LibItsCam_TestSystem all; // LibItsHttp import from LibItsHttp_TestSystem all; type component ItsPkiSystem extends ItsCamSystem { port HttpPort httpPort; } // End of component ItsPkiSystem type component ItsPkiItss extends ItsCam, ItsSecurityBaseComponent { port HttpPort httpPort; } // End of component ItsPkiItss type component ItsPki extends ItsBaseComponent, ItsSecurityBaseComponent { port HttpPort httpPort; } // End of component ItsPki } // End of module LibItsPki_TestSystem