1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.impl.wsdl.actions.iface;
14
15 import java.util.ArrayList;
16 import java.util.Arrays;
17 import java.util.List;
18
19 import com.eviware.soapui.impl.WorkspaceImpl;
20 import com.eviware.soapui.impl.wsdl.WsdlInterface;
21 import com.eviware.soapui.impl.wsdl.WsdlProject;
22 import com.eviware.soapui.model.support.ModelSupport;
23 import com.eviware.soapui.support.SoapUIException;
24 import com.eviware.soapui.support.UISupport;
25 import com.eviware.soapui.support.action.support.AbstractSoapUIAction;
26
27 /***
28 * Clones an Interface to another project
29 *
30 * @author Ole.Matzura
31 */
32
33 public class CloneInterfaceAction extends AbstractSoapUIAction<WsdlInterface>
34 {
35 public CloneInterfaceAction()
36 {
37 super( "Clone Interface", "Clones this Interface to another project" );
38 }
39
40 public void perform( WsdlInterface iface, Object param )
41 {
42 WorkspaceImpl workspace = iface.getProject().getWorkspace();
43 String[] names = ModelSupport.getNames( workspace.getOpenProjectList(), new String[]{"<Create New>"} );
44
45 List<String> asList = new ArrayList<String>( Arrays.asList( names ));
46 asList.remove( iface.getProject().getName() );
47
48 String targetProjectName = UISupport.prompt( "Select target Project for cloned Interface", "Clone Interface", asList );
49 if( targetProjectName == null )
50 return;
51
52 WsdlProject targetProject = ( WsdlProject ) workspace.getProjectByName( targetProjectName );
53 if( targetProject == null )
54 {
55 targetProjectName = UISupport.prompt( "Enter name for new Project", "Clone TestSuite", "" );
56 if( targetProjectName == null )
57 return;
58
59 try
60 {
61 targetProject = workspace.createProject( targetProjectName );
62 }
63 catch( SoapUIException e )
64 {
65 UISupport.showErrorMessage( e );
66 }
67
68 if( targetProject == null )
69 return;
70 }
71
72 WsdlInterface targetIface = (WsdlInterface) targetProject.getInterfaceByTechnicalId( iface.getTechnicalId());
73 if( targetIface != null )
74 {
75 UISupport.showErrorMessage( "Target Project already contains Interface for binding" );
76 }
77 else
78 {
79 boolean importEndpoints = UISupport.confirm( "Import endpoint defaults also?", getName() );
80 UISupport.select( targetProject.importInterface( iface, importEndpoints, true ) );
81 }
82 }
83 }