📄 axisnamespacehandler.java
字号:
/* * $Id: AxisNamespaceHandler.java 12420 2008-07-29 18:58:27Z tcarlson $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.soap.axis.config;import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;import org.mule.config.spring.parsers.PreProcessor;import org.mule.config.spring.parsers.assembly.MapEntryCombiner;import org.mule.config.spring.parsers.assembly.configuration.PropertyConfiguration;import org.mule.config.spring.parsers.collection.ChildListEntryDefinitionParser;import org.mule.config.spring.parsers.delegate.ParentContextDefinitionParser;import org.mule.config.spring.parsers.processors.AttributeConcatenation;import org.mule.config.spring.parsers.specific.ComponentDefinitionParser;import org.mule.config.spring.parsers.specific.properties.ElementInNestedMapDefinitionParser;import org.mule.config.spring.parsers.specific.properties.ListPropertyDefinitionParser;import org.mule.config.spring.parsers.specific.properties.NestedListDefinitionParser;import org.mule.config.spring.parsers.specific.properties.NestedMapWithAttributesDefinitionParser;import org.mule.config.spring.parsers.specific.properties.SimplePropertyDefinitionParser;import org.mule.transport.soap.SoapConstants;import org.mule.transport.soap.axis.AxisConnector;import org.mule.transport.soap.axis.AxisMessageReceiver;import org.mule.transport.soap.axis.component.WebServiceWrapperComponent;import java.util.HashMap;import java.util.Map;import org.apache.axis.constants.Style;import org.apache.axis.constants.Use;import org.w3c.dom.Element;/** * Registers a Bean Definition Parser for handling <code><axis:connector></code> elements. */public class AxisNamespaceHandler extends AbstractMuleNamespaceHandler{ public static final String PROPERTIES = "properties"; public static final Map USE_MAP = new HashMap(); public static final Map STYLE_MAP = new HashMap(); static { USE_MAP.put("LITERAL", Use.LITERAL_STR); USE_MAP.put("ENCODED", Use.ENCODED_STR); STYLE_MAP.put("DOCUMENT", Style.DOCUMENT_STR); STYLE_MAP.put("MESSAGE", Style.MESSAGE_STR); STYLE_MAP.put("RPC", Style.RPC_STR); STYLE_MAP.put("WRAPPED", Style.WRAPPED_STR); } public void init() { registerMetaTransportEndpoints(AxisConnector.AXIS).addMapping(AxisConnector.USE, USE_MAP).addMapping(AxisConnector.STYLE, STYLE_MAP); registerConnectorDefinitionParser(AxisConnector.class); registerBeanDefinitionParser("supported-scheme", new ChildListEntryDefinitionParser("supportedSchemes", "value")); registerBeanDefinitionParser("soap-method", new ElementInNestedMapDefinitionParser(PROPERTIES, AxisConnector.SOAP_METHODS, "method")); registerBeanDefinitionParser("soap-parameter", new SoapParameterDefinitionParser()); registerBeanDefinitionParser("soap-return", new SoapReturnDefinitionParser()); registerMuleBeanDefinitionParser("soap-service", new NestedListDefinitionParser(PROPERTIES, SoapConstants.SERVICE_INTERFACES, "interface")); registerMuleBeanDefinitionParser("options", new NestedMapWithAttributesDefinitionParser(PROPERTIES, AxisMessageReceiver.AXIS_OPTIONS)); registerMuleBeanDefinitionParser("option", new SimplePropertyDefinitionParser()); registerMuleBeanDefinitionParser("bean-type", new ParentContextDefinitionParser("connector", new ChildListEntryDefinitionParser(AxisMessageReceiver.BEAN_TYPES, "interface")) .otherwise(new NestedListDefinitionParser(PROPERTIES, AxisMessageReceiver.BEAN_TYPES, "interface"))); registerBeanDefinitionParser("wrapper-component", new ComponentDefinitionParser(WebServiceWrapperComponent.class)); } private static class SoapParameterDefinitionParser extends ListPropertyDefinitionParser { public static final String PARAMETER = "parameter"; public SoapParameterDefinitionParser() { super(PARAMETER); registerPreProcessor(new AttributeConcatenation(PARAMETER, ";", new String[]{PARAMETER, "type", "mode"})); } } private static class SoapReturnDefinitionParser extends ListPropertyDefinitionParser { public SoapReturnDefinitionParser() { super(MapEntryCombiner.VALUE); registerPreProcessor(new PreProcessor() { public void preProcess(PropertyConfiguration config, Element element) { element.setAttribute(MapEntryCombiner.VALUE, "return;" + element.getAttribute("type")); } }); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -