Examples of exportData()


Examples of ch.tatool.export.DataExporter.exportData()

       
        // now perform the export
        DataExporterErrorImpl exporterError = new DataExporterErrorImpl();
        exporterError.setMessages(messages);
        try {
          exporter.exportData(parent, module, fromSessionIndex, exporterError);
          if (exporterError.getErrorType() != 0) {
            dataService.saveModule(module);
            return exporterError.getErrorMessage();
          }
            // update the export information
View Full Code Here

Examples of ch.tatool.export.DataExporter.exportData()

       
        // now perform the export
        DataExporterErrorImpl exporterError = new DataExporterErrorImpl();
        exporterError.setMessages(messages);
        try {
          exporter.exportData(parent, module, fromSessionIndex, exporterError);
          if (exporterError.getErrorType() != 0) {
            dataService.saveModule(module);
            return exporterError.getErrorMessage();
          }
            // update the export information
View Full Code Here

Examples of ch.tatool.export.DataExporter.exportData()

        // now perform the export
        String error = null;
        DataExporterErrorImpl exporterError = new DataExporterErrorImpl();
        exporterError.setMessages(messages);
        try {
          error = exporter.exportData(parent, module, fromSessionIndex, exporterError);
          if (exporterError.getErrorType() != 0) {
            dataService.saveModule(module);
            return exporterError.getErrorMessage();
          }
            // update the export information
View Full Code Here

Examples of cx.fbn.nevernote.xml.ExportData.exportData()

      ExportData noteWriter = new ExportData(conn, true);
      String fileName = fd.selectedFiles().get(0);

      if (!fileName.endsWith(".nnex"))
        fileName = fileName +".nnex";
      noteWriter.exportData(fileName);
      setMessage(tr("Database backup completed."));

      waitCursor(false);
  }
View Full Code Here

Examples of cx.fbn.nevernote.xml.ExportData.exportData()

      ExportData noteWriter = new ExportData(conn, false, selectedNoteGUIDs);
      String fileName = fd.selectedFiles().get(0);

      if (!fileName.endsWith(".nnex"))
        fileName = fileName +".nnex";
      noteWriter.exportData(fileName);
      setMessage(tr("Export completed."));

      waitCursor(false);
   
View Full Code Here

Examples of org.apache.jetspeed.serializer.JetspeedSerializer.exportData()

            if (processPrefs)
                serializer = serializerFactory.create(JetspeedSerializerFactory.SECONDARY);
            else
                serializer = serializerFactory.create(JetspeedSerializerFactory.PRIMARY);
            serializer.setDefaultIndent("\t");
            serializer.exportData("jetspeedadmin_export_process", exportFileName, settings);
            requestContext.getRequest().getSession().setAttribute("file", userName + "_ldapExport.xml");
            resultMap.put("link", getDownloadLink(requestContext, "tmpExport.xml", userName));

            resultMap.put(STATUS, status);
        } catch (Exception e)
View Full Code Here

Examples of org.apache.jetspeed.serializer.JetspeedSerializer.exportData()

            if (processPrefs)
                serializer = serializerFactory.create(JetspeedSerializerFactory.SECONDARY);
            else
                serializer = serializerFactory.create(JetspeedSerializerFactory.PRIMARY);
            serializer.setDefaultIndent("\t");
            serializer.exportData("jetspeedadmin_export_process", exportFileName, settings);
            requestContext.getRequest().getSession().setAttribute("file", userName + "_ldapExport.xml");
            resultMap.put("link", getDownloadLink(requestContext, "tmpExport.xml", userName));

            resultMap.put(STATUS, status);
        } catch (Exception e)
View Full Code Here

Examples of org.apache.jetspeed.serializer.JetspeedSerializer.exportData()

            {
                if (exportName == null)
                {
                    exportName = JetspeedSerializer.TAG_SNAPSHOT;
                }
                serializer.exportData(exportName, exportFile, settings);
            }
            scm.stop();
        }
        catch (Exception e)
        {
View Full Code Here

Examples of org.apache.jetspeed.serializer.JetspeedSerializer.exportData()

            {
                if (exportName == null)
                {
                    exportName = JetspeedSerializer.DEFAULT_TAG_SNAPSHOT_NAME;
                }
                serializer.exportData(exportName, exportFile, settings);
            }
            scm.stop();
        }
        catch (Exception e)
        {
View Full Code Here

Examples of org.apache.uima.ducc.common.jd.files.WorkItemStateManager.exportData()

    if(workItemStateManager == null) {
      duccOut.debug(methodName, null, duccMsg.fetch("workItemStateManager is null"));
    }
    else {
      try {
        workItemStateManager.exportData();
      }
      catch(Exception e) {
        duccOut.error(methodName, null, e);
      }
     
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.