1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.services.communication.message;6 7 /**8 * Created by The eXo Platform SARL .9 * Author : Tuan Nguyen10 * tuan08@users.sourceforge.net11 * Date: Jun 14, 200312 * Time: 1:12:22 PM13 */14 public interface Folder {15 public String getId();16 17 public String getName();18 public void setName(String name);19 20 public String getLabel();21 public void setLabel(String name);22 }