Package com.eviware.soapui.actions

Source Code of com.eviware.soapui.actions.ExportProjectAction

/*
*  soapUI, copyright (C) 2004-2011 eviware.com
*
*  soapUI is free software; you can redistribute it and/or modify it under the
*  terms of version 2.1 of the GNU Lesser General Public License as published by
*  the Free Software Foundation.
*
*  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
*  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*  See the GNU Lesser General Public License for more details at gnu.org.
*/
package com.eviware.soapui.actions;

import java.io.File;

import com.eviware.soapui.impl.wsdl.WsdlProject;
import com.eviware.soapui.integration.exporter.ProjectExporter;
import com.eviware.soapui.support.UISupport;
import com.eviware.soapui.support.action.support.AbstractSoapUIAction;

public class ExportProjectAction extends AbstractSoapUIAction<WsdlProject>
{

  public ExportProjectAction()
  {
    super( "Export Project", "Export Project" );
  }

  @Override
  public void perform( WsdlProject project, Object param )
  {
    ProjectExporter exporter = new ProjectExporter( project );

    try
    {
      String path = project.getPath();
      if( path == null )
      {
        project.save();
      }
      else
      {
        File file = UISupport.getFileDialogs().saveAs( this, "Select file to export project", "zip", "zip",
            new File( System.getProperty( "user.home" ) ) );
        if( file == null )
          return;

        String fileName = file.getAbsolutePath();
        if( fileName == null )
          return;

        exporter.exportProject( fileName );
      }
    }
    catch( Exception e1 )
    {
      UISupport.showErrorMessage( "Failed to export project; " + e1 );
    }

  }

}
TOP

Related Classes of com.eviware.soapui.actions.ExportProjectAction

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.