View Javadoc

1   package com.eviware.soapui.impl.wsdl;
2   
3   import com.eviware.soapui.model.iface.Attachment.AttachmentEncoding;
4   
5   public interface WsdlAttachmentContainer extends AttachmentContainer
6   {
7   	public boolean isMtomEnabled();
8   	
9   	public boolean isInlineFilesEnabled();
10  	
11  	public boolean isEncodeAttachments();
12  	
13  	AttachmentEncoding getAttachmentEncoding( String partName );
14  }