1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.impl.wsdl.teststeps.actions;
14
15 import com.eviware.soapui.impl.wsdl.teststeps.WsdlMessageAssertion;
16 import com.eviware.soapui.support.UISupport;
17 import com.eviware.soapui.support.action.support.AbstractSoapUIAction;
18
19 /***
20 * Clones the specified WsdlMessageAssertion
21 *
22 * @author ole.matzura
23 */
24
25 public class CloneAssertionAction extends AbstractSoapUIAction<WsdlMessageAssertion>
26 {
27 public static final String SOAPUI_ACTION_ID = "CloneAssertionAction";
28
29 public CloneAssertionAction()
30 {
31 super( "Clone", "Clones this assertion" );
32 }
33
34 public void perform( WsdlMessageAssertion target, Object param )
35 {
36 String name = target.getName();
37
38 while( target.getName().equals( name ))
39 {
40 name = UISupport.prompt("Specify unique name for cloned assertion", "Clone Assertion", target.getName() );
41 if( name == null )
42 return;
43 }
44
45 WsdlMessageAssertion assertion = target.getAssertable().cloneAssertion( target, name );
46
47 if( assertion.isConfigurable() )
48 assertion.configure();
49 }
50 }