KickJava   Java API By Example, From Geeks To Geeks.

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


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: ContainerEntry.java,v 1.2 2004/08/23 14:54:11 geaz Exp $
15  */

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