private void instatiateOper(String compId)
        {
            /*ArchComponent archComponent = HPCStormObjectRepository
             *              .getWorkflowEngine().getArchComponentByID(
             *                              Integer.parseInt(compId));
             * System.out.println("invoke instantiate=> archComponent: ["+archComponent.getId()+"]" + archComponent.getName());*/
            CertifierConsoleLogger.write("perform instantiate => " + "CompID " + compId);

            string handle_fake = "handle perform " + compId;
            LogicActionInstantiate l;

            //	if(!Certifier.InstantiateActions.ContainsKey(handle_fake)){
            l = new LogicActionInstantiate(compId, handle_fake);

            Certifier.InstantiateActions.TryAdd(handle_fake, l);

            /*	}else{
             *
             *              l= (LogicActionInstantiate)Certifier.InstantiateActions[compId];
             *              //l =  new LogicActionInstantiate(compId, Certifier.tacticalCommand);
             *      }*/


            l.run();
        }