01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.dispatchers;
20:
21: import org.apache.axis2.AxisFault;
22: import org.apache.axis2.context.MessageContext;
23: import org.apache.axis2.description.AxisOperation;
24: import org.apache.axis2.description.AxisService;
25: import org.apache.axis2.description.HandlerDescription;
26: import org.apache.axis2.engine.AbstractDispatcher;
27: import org.apache.axis2.util.LoggingControl;
28: import org.apache.commons.logging.Log;
29: import org.apache.commons.logging.LogFactory;
30:
31: /**
32: * Dispatches based on the SOAPAction.
33: */
34: public class SOAPActionBasedDispatcher extends AbstractDispatcher {
35:
36: /**
37: * Field NAME
38: */
39: public static final String NAME = "SOAPActionBasedDispatcher";
40: private static final Log log = LogFactory
41: .getLog(SOAPActionBasedDispatcher.class);
42: private ActionBasedOperationDispatcher abod = new ActionBasedOperationDispatcher();
43:
44: public AxisOperation findOperation(AxisService service,
45: MessageContext messageContext) throws AxisFault {
46: return abod.findOperation(service, messageContext);
47: }
48:
49: /*
50: * (non-Javadoc)
51: *
52: * @see org.apache.axis2.engine.AbstractDispatcher#findService(org.apache.axis2.context.MessageContext)
53: */
54: public AxisService findService(MessageContext messageContext)
55: throws AxisFault {
56: if (LoggingControl.debugLoggingAllowed && log.isDebugEnabled()) {
57: log
58: .debug(messageContext.getLogIDString()
59: + " Checking for Service using SOAPAction is a TODO item");
60: }
61: return null;
62: }
63:
64: public void initDispatcher() {
65: init(new HandlerDescription(NAME));
66: }
67: }
|