1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.model.mock;
14
15 import com.eviware.soapui.support.action.swing.ActionList;
16 import com.eviware.soapui.support.types.StringToStringMap;
17
18 /***
19 * Resulting MessageExchange for a request to a MockService
20 *
21 * @author ole.matzura
22 */
23
24 public interface MockResult
25 {
26 public MockRequest getMockRequest();
27
28 public StringToStringMap getResponseHeaders();
29
30 public String getResponseContent();
31
32 public MockResponse getMockResponse();
33
34 public ActionList getActions();
35
36 public long getTimeTaken();
37
38 public long getTimestamp();
39 }