Package sos.marshalling

Examples of sos.marshalling.SOSExport$Query


 
  public void export(SOSConnection sosConnection, String queryfile, String filename, String jobChain, String operation) throws Exception{
   
    org.w3c.dom.Element           queries   = null;
    SOSStandardLogger sosLogger = null;
    SOSExport         export    = null;
    try {             
     
      //sosLogger = new SOSStandardLogger(getLogger().getFileName(), getLogger().getLogLevel());
      sosLogger = new SOSStandardLogger(spooler.log().filename(), getLogger().getLogLevel());
     
     
      export = new SOSExport(sosConnection, filename, "EXPORT", sosLogger);     
      queries = getQueryElement(queryfile, jobChain);
     
      if(queries != null) {
        exportQueryRecursiv(queries, export,-1, operation);       
      }
View Full Code Here

TOP

Related Classes of sos.marshalling.SOSExport$Query

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.