KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > container > configuration > PortalContainerInfo


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
6 package org.exoplatform.container.configuration;
7
8 /**
9  * @author Benjamin Mestrallet
10  * benjamin.mestrallet@exoplatform.com
11  */

12 public class PortalContainerInfo {
13   
14   private String JavaDoc containerName;
15   
16   public PortalContainerInfo(String JavaDoc containerName) {
17     this.containerName = containerName;
18   }
19   public String JavaDoc getContainerName() {
20     return containerName;
21   }
22
23   public void setContainerName(String JavaDoc containerName) {
24     this.containerName = containerName;
25   }
26 }
27
Popular Tags