View Javadoc

1   package com.eviware.soapui.impl.wsdl.support;
2   
3   import com.eviware.soapui.impl.wsdl.submit.AbstractMessageExchange;
4   import com.eviware.soapui.model.ModelItem;
5   import com.eviware.soapui.model.iface.Attachment;
6   import com.eviware.soapui.model.iface.Operation;
7   import com.eviware.soapui.support.types.StringToStringMap;
8   
9   public abstract class AbstractNonHttpMessageExchange<T extends ModelItem> extends AbstractMessageExchange<T>
10  {
11  
12  	public AbstractNonHttpMessageExchange( T modelItem )
13  	{
14  		super( modelItem );
15  	}
16  
17  	public Operation getOperation()
18  	{
19  		return null;
20  	}
21  
22  	public byte[] getRawRequestData()
23  	{
24  		return null;
25  	}
26  
27  	public byte[] getRawResponseData()
28  	{
29  		return null;
30  	}
31  
32  	public Attachment[] getRequestAttachments()
33  	{
34  		return null;
35  	}
36  
37  	public Attachment[] getRequestAttachmentsForPart( String partName )
38  	{
39  		return null;
40  	}
41  
42  	public StringToStringMap getResponseHeaders()
43  	{
44  		return null;
45  	}
46  
47  	public StringToStringMap getRequestHeaders()
48  	{
49  		return null;
50  	}
51  
52  	public Attachment[] getResponseAttachments()
53  	{
54  		return null;
55  	}
56  
57  	public Attachment[] getResponseAttachmentsForPart( String partName )
58  	{
59  		return null;
60  	}
61  
62  	public boolean hasRawData()
63  	{
64  		return false;
65  	}
66  }