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