KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > communication > message > Attachment


1 package org.exoplatform.services.communication.message;
2
3 /**
4  * Created y the eXo platform team
5  * User: Benjamin Mestrallet
6  * Date: 2 sept. 2004
7  */

8 public interface Attachment {
9
10   public String JavaDoc getName();
11   public void setName(String JavaDoc name) ;
12
13   public byte[] getContent();
14   public void setContent(byte[] content) ;
15 }
16
Popular Tags