KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > config > impl > ConfigurationDataImpl


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.config.impl;
6
7 import org.exoplatform.services.config.ConfigurationData ;
8 /**
9  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
10  * @since Dec 5, 2004
11  * @version $Id$
12  * @hibernate.class table="EXO_SERVICE_CONFIG"
13  * @hibernate.cache usage="read-write"
14  */

15 public class ConfigurationDataImpl implements ConfigurationData {
16   private String JavaDoc serviceType ;
17   private String JavaDoc data ;
18   
19   /**
20    * @hibernate.id generator-class="assigned" unsaved-value="null"
21    ***/

22   public String JavaDoc getServiceType() { return serviceType ;}
23   public void setServiceType(String JavaDoc s) {serviceType = s; }
24
25   /**
26    * @hibernate.property length="65535" type="org.exoplatform.services.database.impl.TextClobType"
27    **/

28   public String JavaDoc getData() { return data ; }
29   public String JavaDoc setData(String JavaDoc s) { return data = s; }
30   
31 }
32
Popular Tags