1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.model.iface;
14
15 import com.eviware.soapui.support.types.StringToStringMap;
16
17 public interface MessageExchange
18 {
19 public long getTimestamp();
20
21 public long getTimeTaken();
22
23 public StringToStringMap getProperties();
24
25 public String getRequestContent();
26
27 public String getResponseContent();
28
29 public StringToStringMap getRequestHeaders();
30
31 public StringToStringMap getResponseHeaders();
32
33 public Attachment [] getRequestAttachments();
34
35 public Attachment [] getResponseAttachments();
36 }