KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jaspersoft > jasperserver > api > common > service > impl > ImplementationClassObjectFactoryImpl


1 /*
2  * Copyright (C) 2006 JasperSoft http://www.jaspersoft.com
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed WITHOUT ANY WARRANTY; and without the
10  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  * See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
15  * or write to:
16  *
17  * Free Software Foundation, Inc.,
18  * 59 Temple Place - Suite 330,
19  * Boston, MA USA 02111-1307
20  */

21
22 package com.jaspersoft.jasperserver.api.common.service.impl;
23
24 import java.util.List JavaDoc;
25 import java.util.Map JavaDoc;
26
27 import com.jaspersoft.jasperserver.api.common.service.ImplementationObjectFactory;
28 import com.jaspersoft.jasperserver.api.common.service.ObjectFactory;
29
30 /**
31  * @author swood
32  *
33  */

34 public class ImplementationClassObjectFactoryImpl implements ImplementationObjectFactory {
35     
36     private Map JavaDoc implementationClassMappings;
37     
38     private ObjectFactory objectFactory;
39
40     public Map JavaDoc getImplementationClassMappings() {
41         return implementationClassMappings;
42     }
43
44     public void setImplementationClassMappings(Map JavaDoc implementationClassMappings) {
45         this.implementationClassMappings = implementationClassMappings;
46     }
47
48     public ObjectFactory getObjectFactory() {
49         return objectFactory;
50     }
51     
52     public void setObjectFactory(ObjectFactory factoryImpl) {
53         this.objectFactory = factoryImpl;
54     }
55     
56     public Class JavaDoc getImplementationClass(Class JavaDoc _class) {
57         return getObjectFactory().getImplementationClass(getImplementationClassMappings(), _class);
58     }
59     
60     public Class JavaDoc getImplementationClass(String JavaDoc id) {
61         return getObjectFactory().getImplementationClass(getImplementationClassMappings(), id);
62     }
63     
64     public String JavaDoc getImplementationClassName(Class JavaDoc _class) {
65         return getObjectFactory().getImplementationClassName(getImplementationClassMappings(), _class);
66     }
67     
68     public String JavaDoc getImplementationClassName(String JavaDoc id) {
69         return getObjectFactory().getImplementationClassName(getImplementationClassMappings(), id);
70     }
71     
72     public Class JavaDoc getInterface(Class JavaDoc _class) {
73         return getObjectFactory().getInterface(getImplementationClassMappings(), _class);
74     }
75     
76     public String JavaDoc getInterfaceName(Class JavaDoc _class) {
77         return getObjectFactory().getInterfaceName(getImplementationClassMappings(), _class);
78     }
79     
80     public String JavaDoc getIdForClass(Class JavaDoc _class) {
81         return getObjectFactory().getIdForClass(getImplementationClassMappings(), _class);
82     }
83
84     public Object JavaDoc newObject(Class JavaDoc _class) {
85         return getObjectFactory().newObject(getImplementationClassMappings(), _class);
86     }
87
88     public Object JavaDoc newObject(String JavaDoc id) {
89         return getObjectFactory().newObject(getImplementationClassMappings(), id);
90     }
91
92     /* (non-Javadoc)
93      * @see com.jaspersoft.jasperserver.api.common.service.ImplementationObjectFactory#getKeys()
94      */

95     public List JavaDoc getKeys() {
96         return getObjectFactory().getKeys(getImplementationClassMappings());
97     }
98 }
99
Popular Tags