All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eviware.soapui.security.tools.AttachmentElement Maven / Gradle / Ivy

The newest version!
package com.eviware.soapui.security.tools;

import com.eviware.soapui.model.iface.Attachment;

public class AttachmentElement
{
	private Attachment attachment;
	private String id;

	public AttachmentElement( Attachment attachment, String id )
	{
		this.attachment = attachment;
		this.id = id;
	}

	public Attachment getAttachment()
	{
		return attachment;
	}

	public void setAttachment( Attachment attachment )
	{
		this.attachment = attachment;
	}

	public String getId()
	{
		return id;
	}

	public String toString()
	{
		return attachment.getName();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy