Package de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result

Examples of de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result.AdapterNotifyRowModel


  public ObservableList<AdapterNotifyRowModel> getAdapterNotifies(Date from, Date to, int maxCount){
    try {
      ObservableList<AdapterNotifyRowModel> result = FXCollections.observableArrayList();
      List<AdapterWfNotifyInfo> list = copperMonitoringService.getList(new TypeFilter<AdapterWfNotifyInfo>(AdapterWfNotifyInfo.class), from, to, maxCount);
      for (AdapterWfNotifyInfo adapterWfNotifyInfo: list){
        result.add(new AdapterNotifyRowModel(adapterWfNotifyInfo));
      }
      return result;
    } catch (RemoteException e) {
      throw new RuntimeException(e);
    }
View Full Code Here


                        adapterLaunchRowModel.timestamp.get().getTime(),
                        adapterLaunchRowModel.workflowname.get(),
                        adapterLaunchRowModel.adapterName.get());
      }
      if (output.value instanceof AdapterNotifyRowModel){
        AdapterNotifyRowModel adapterNotifyRowModel = (AdapterNotifyRowModel)output.value;
        addNotifyEventAnimation(
                        adapterNotifyRowModel.timestamp.get().getTime(),
                        adapterNotifyRowModel.correlationId.get(),
                        adapterNotifyRowModel.adapterName.get());
      }
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result.AdapterNotifyRowModel

Copyright © 2018 www.massapicom. 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.