Examples of export()


Examples of org.exolab.castor.dsml.Exporter.export()

      } else {
    exporter = new MozillaExporter( conn );
      }
      exporter.readSearchDescriptor( Test.class.getResourceAsStream( "search.xml" ) );
      exporter.setImportDescriptor( importer.getImportDescriptor() );
      exporter.export( System.out, false, true );

      if ( jndi ) {
    ctx.close();
      } else {
    conn.disconnect();
View Full Code Here

Examples of org.exolab.jms.net.http.HTTPRequestInfo.export()

        ssl.setTrustStoreType("PCKS12");

        Properties properties = new Properties(prefix);
        HTTPRequestInfo info1 = populate(uri, proxyHost, proxyPort, proxyUser,
                                         proxyPassword, ssl);
        info1.export(properties);
        HTTPRequestInfo info2 = new HTTPRequestInfo(new URI(uri), properties);
        assertEquals(info1, info2);

        assertEquals(uri, info2.getURI().toString());
        assertEquals(proxyHost, info2.getProxyHost());
View Full Code Here

Examples of org.exolab.jms.net.rmi.RMIRequestInfo.export()

        URI uri = getURI(getExportURI());
        RMIRequestInfo info = new RMIRequestInfo(uri);
        RmiConfiguration config = getConfiguration().getRmiConfiguration();

        info.setEmbedRegistry(config.getEmbeddedRegistry());
        info.export(properties);
    }
}
View Full Code Here

Examples of org.exolab.jms.net.socket.SocketRequestInfo.export()

    protected void populateAcceptProperties(Properties properties) {
        URI uri = getURI(getExportURI());
        try {
            SocketRequestInfo info = new SocketRequestInfo(uri);
            info.setBindAll(_config.getBindAll());
            info.export(properties);
        } catch (ResourceException exception) {
            // should never happen.
            throw new IllegalStateException(exception.getMessage());
        }
    }
View Full Code Here

Examples of org.exolab.jms.net.tcp.TCPSRequestInfo.export()

        ssl.setTrustStoreType("PCKS12");

        Properties properties = new Properties(prefix);
        TCPSRequestInfo info1 = populate(uri, alternativeHost, bindAll,
                                         ssl, clientAuthReqd);
        info1.export(properties);

        TCPSRequestInfo info2 = new TCPSRequestInfo(
                new URI(properties.get(ORB.PROVIDER_URI)),
                properties);
View Full Code Here

Examples of org.exolab.jms.net.util.SSLProperties.export()

     */
    public void export(Properties properties) {
        super.export(properties);
        SSLProperties ssl = getSSLProperties();
        if (ssl != null) {
            ssl.export(properties);
        }
        properties.set(NEED_CLIENT_AUTH, getNeedClientAuth());
    }

    /**
 
View Full Code Here

Examples of org.fcrepo.client.utility.export.AutoExporter.export()

                                        .getFile());
                        Administrator.setLastDir(file.getParentFile()); // remember the dir for next time
                        ExportOptionsDialog optsDialog =
                                new ExportOptionsDialog("Select Options for Export");
                        if (optsDialog.getFormatSelection() != null) {
                            exporter.export(pid,
                                            optsDialog.getFormatSelection(),
                                            optsDialog.getContextSelection(),
                                            new FileOutputStream(file));
                            JOptionPane.showMessageDialog(Administrator
                                    .getDesktop(), "Exported " + pid);
View Full Code Here

Examples of org.fcrepo.server.storage.DOReader.Export()

            DOReader reader =
                    m_manager.getReader(Server.USE_DEFINITIVE_STORE,
                                        context,
                                        pid);
            InputStream instream = reader.Export(format, exportContext);

            return instream;
        } finally {
            // Logger completion
            if (logger.isInfoEnabled()) {
View Full Code Here

Examples of org.freeplane.features.export.mindmapmode.IExportEngine.export()

            throw new RuntimeException("destination file " + destFile.getAbsolutePath()
                    + " already exists - set overwriteExisting to true?");
        }
        else {
            final IExportEngine exportEngine = ExportController.getContoller().getFilterMap().get(filter);
            exportEngine.export(((MapProxy) map).getDelegate(), destFile);
            LogUtils.info("exported " + map.getFile() + " to " + destFile.getAbsolutePath());
        }
    }

    private FileFilter findExportFileFilterByDescription(String exportTypeDescription) {
View Full Code Here

Examples of org.g4studio.core.web.report.excel.ExcelExporter.export()

    ExcelExporter excelExporter = new ExcelExporter();
    excelExporter.setTemplatePath("/report/excel/demo/hisCatalogReport3.xls");
    List fuckList = new ArrayList();
    excelExporter.setData(parametersDto, fuckList);
    excelExporter.setFilename("北京市第一人民医院收费项目表.xls");
    excelExporter.export(request, response);
    return mapping.findForward(null);
  }

  /**
   * Excel导入页面初始化
 
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.