]> source.dussan.org Git - archiva.git/blob
1059e154102d1f4de2ac41ea5b357a0470c8222a
[archiva.git] /
1 package org.apache.maven.archiva.web.xmlrpc.server;\r
2 \r
3 /*\r
4  * Licensed to the Apache Software Foundation (ASF) under one\r
5  * or more contributor license agreements.  See the NOTICE file\r
6  * distributed with this work for additional information\r
7  * regarding copyright ownership.  The ASF licenses this file\r
8  * to you under the Apache License, Version 2.0 (the\r
9  * "License"); you may not use this file except in compliance\r
10  * with the License.  You may obtain a copy of the License at\r
11  *\r
12  *  http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing,\r
15  * software distributed under the License is distributed on an\r
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r
17  * KIND, either express or implied.  See the License for the\r
18  * specific language governing permissions and limitations\r
19  * under the License.\r
20  */\r
21 \r
22 import java.util.Map;\r
23 import java.util.HashMap;\r
24 import java.util.List;\r
25 import org.apache.xmlrpc.XmlRpcException;\r
26 import org.apache.xmlrpc.XmlRpcRequest;\r
27 import org.apache.xmlrpc.server.RequestProcessorFactoryFactory;\r
28 \r
29 public class ArchivaRequestProcessorFactoryFactory implements RequestProcessorFactoryFactory\r
30 {\r
31     private final Map<Class, ArchivaRequestProcessorFactory> services;\r
32 \r
33     public ArchivaRequestProcessorFactoryFactory(List serviceList)\r
34     {\r
35         services = new HashMap<Class, ArchivaRequestProcessorFactory>();\r
36         for (Object service : serviceList)\r
37         {\r
38             services.put(service.getClass(), new ArchivaRequestProcessorFactory(service.getClass(), service));\r
39         }\r
40     }\r
41 \r
42     public RequestProcessorFactory getRequestProcessorFactory(Class pClass)\r
43         throws XmlRpcException\r
44     {\r
45         ArchivaRequestProcessorFactory processorFactory = services.get(pClass);\r
46         if (processorFactory == null)\r
47         {\r
48             throw new XmlRpcException("Could not find service object instance for type " + pClass.getName());\r
49         }\r
50         return processorFactory;\r
51     }\r
52     \r
53     private class ArchivaRequestProcessorFactory implements RequestProcessorFactory\r
54     {\r
55         private final Class pType;\r
56 \r
57         private final Object serviceObject;\r
58 \r
59         public ArchivaRequestProcessorFactory(Class pType, Object serviceObject)\r
60         {\r
61             this.pType = pType;\r
62             this.serviceObject = serviceObject;\r
63         }\r
64 \r
65         public Object getRequestProcessor(XmlRpcRequest request)\r
66             throws XmlRpcException\r
67         {\r
68             return serviceObject;\r
69         }\r
70     }\r
71 }\r