1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.impl.wsdl.actions.iface;
14
15 import com.eviware.soapui.impl.wsdl.WsdlInterface;
16 import com.eviware.soapui.support.action.support.AbstractSoapUIAction;
17
18 /***
19 * Manages the service endpoints for a WsdlInterface
20 *
21 * @author Ole.Matzura
22 */
23
24 public class InterfaceEndpointsAction extends AbstractSoapUIAction<WsdlInterface>
25 {
26 public InterfaceEndpointsAction()
27 {
28 super( "Service Endpoints", "Manage service endpoints available for this interface" );
29 }
30
31 public void perform( WsdlInterface target, Object param )
32 {
33 target.getProject().getEndpointStrategy().configure( target );
34 }
35 }