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

com.automationrockstars.gunter.events.Attachment Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
/*******************************************************************************
 * Copyright (c) 2015, 2016 Automation RockStars Ltd.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Apache License v2.0
 * which accompanies this distribution, and is available at
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     Automation RockStars - initial API and implementation
 *******************************************************************************/
package com.automationrockstars.gunter.events;

public interface Attachment extends Event {

	void setContent(byte[] content);
	
	byte[] getContent();
	
	void setMimeType(String type);
	
	String getMimeType();
	
	void setTitle(String title);
	
	String getTitle();
	
	void attach(String mimeType, String title, byte[] content);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy