KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > jcr > config > RepositoryManagerEntry


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.jcr.config;
7
8 import java.util.Properties JavaDoc;
9
10 /**
11  * Created by The eXo Platform SARL .
12  *
13  * @author <a HREF="mailto:geaz@users.sourceforge.net">Gennady Azarenkov</a>
14  * @version $Id: RepositoryManagerEntry.java,v 1.2 2004/08/23 14:54:11 geaz Exp $
15  */

16
17 public class RepositoryManagerEntry {
18
19   public RepositoryManagerEntry(String JavaDoc name, Class JavaDoc type, Properties JavaDoc params) {
20
21     this.name = name;
22     this.type = type;
23     this.parameters = params;
24   }
25
26   private String JavaDoc name;
27   private Class JavaDoc type;
28   private Properties JavaDoc parameters;
29
30   public String JavaDoc getName() {
31     return name;
32   }
33
34   public void setName(String JavaDoc name) {
35     this.name = name;
36   }
37
38   public Class JavaDoc getType() {
39     return type;
40   }
41
42   public void setType(Class JavaDoc type) {
43     this.type = type;
44   }
45
46   public Properties JavaDoc getParameters() {
47     return parameters;
48   }
49
50   public void setParameters(Properties JavaDoc parameters) {
51     this.parameters = parameters;
52   }
53
54
55 }
56
Popular Tags