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.portletcontainer.impl.config;6 7 /**8 * Jul 7, 2004 9 * @author: Tuan Nguyen10 * @email: tuan08@users.sourceforge.net11 * @version: $Id: SupportedContent.java,v 1.1 2004/07/08 19:11:45 tuan08 Exp $12 */13 public class SupportedContent {14 private String name ;15 16 public String getName() {17 return name;18 }19 20 public void setName(String name) {21 this.name = name;22 }23 }24