KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > impl > config > DelegatedBundle


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.services.portletcontainer.impl.config;
7
8 /**
9  * @author Benjamin Mestrallet benjamin.mestrallet@exoplatform.com
10  */

11 public class DelegatedBundle {
12
13   private String JavaDoc enable;
14
15   public String JavaDoc getEnable() {
16     return enable;
17   }
18
19   public void setEnable(String JavaDoc enable) {
20     this.enable = enable;
21   }
22
23 }
Popular Tags