Examples of UfisMarshal


Examples of com.ufis_as.ek_if.ufis.UfisMarshal

      if (fevFound) {
        //msgobjects.setINFOJFEVTAB(infojfevtab);
        msgobjects.setINFOJFEVTABLIST(infojfevtablist);
      }
 
      UfisMarshal ufisMarshal = new UfisMarshal(_ms, _msgActionType, MSGIF, _interfaceConfig);
      _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);
      isTransferred = true;
    } catch (Exception e) {
      LOG.error("Cannot transform egds message: {}", e.getMessage());
    }
    return isTransferred;
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisMarshal

            msgobjects.setINFOBJFLIGHT(infobjFlight);
            //msgobjects.setINFOJFEVTAB(infojfevtab);
            //msgobjects.setINFOJFEVTABLIST(infojfevtablist);
            msgobjects.setINFOJXAFTAB(infojxaftab);
            msgobjects.setINFOJDCFTABLIST(infojdcftablist);
            UfisMarshal ufisMarshal = new UfisMarshal(_ms, _msgActionType, MSGIF, _interfaceConfig);
            _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);
            return true;
            //marshalFlightEvent(infobjFlight, msgobjects);
        }
        return false;
    }
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisMarshal

      if (fevFound) {
        //msgobjects.setINFOJFEVTAB(infojfevtab);
        msgobjects.setINFOJFEVTABLIST(infojfevtablist);
      }
 
      UfisMarshal ufisMarshal = new UfisMarshal(_ms, _msgActionType, MSGIF, null);
      _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);
      isTransferred = true;
    } catch (Exception e) {
      LOG.error("Cannot transform egds message: {}", e.getMessage());
      //LOG.error("Message Dropped: \n{}", _flightXml);
      return false;
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisMarshal

         * the rest are done in the UfisMarshal
         */
        //msgobjects.setINFOBJFLIGHT(infobjFlight);
        msgobjects.setINFOBJTOWING(towings);

        UfisMarshal ufisMarshal = new UfisMarshal(_ms, null, MSGIF + MSGIF_SUBSYS, null);
        _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);

        return true;
    }
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisMarshal

        delay.setDURA(dura);
        delay.setREMA(towDelay.getDELAYREMARKS());
        //msgobjects.setINFOBJFLIGHT(infobjFlight);
        msgobjects.setINFOBJTOWINGDELAY(delay);
       
        UfisMarshal ufisMarshal = new UfisMarshal(_ms, null, MSGIF + MSGIF_SUBSYS, null);
        _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);
      return true;
    }
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisMarshal

         */
        msgobjects.setINFOBJFLIGHT(infobjFlight);
        if (isXafFound) {
          msgobjects.setINFOJXAFTAB(infojxaftab);
        }
        UfisMarshal ufisMarshal = new UfisMarshal(_ms, _msgActionType, MSGIF, null);
        _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);

        return true;
    }
View Full Code Here

Examples of com.ufis_as.ek_if.ufis.UfisMarshal

          // flight daily id
          infojxaftab.setIDFD(fltDaily.getId());
          msgobjects.setINFOJXAFTAB(infojxaftab);
        }
        msgobjects.setINFOJDCFTABLIST(infojdcftablist);
        UfisMarshal ufisMarshal = new UfisMarshal(_ms, _msgActionType, MSGIF, null);
        _returnXML = ufisMarshal.marshalFlightEvent(infobjgeneric, msgobjects);
        return true;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.