org.apache.camel.component.cxf.invoker.PayloadInvokingContext Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.cxf.invoker;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.w3c.dom.Element;
import org.apache.camel.Headers;
import org.apache.cxf.binding.soap.SoapHeader;
import org.apache.cxf.common.logging.LogUtils;
import org.apache.cxf.headers.Header;
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.message.Exchange;
import org.apache.cxf.message.Message;
public class PayloadInvokingContext extends AbstractInvokingContext {
private static final Logger LOG = LogUtils.getL7dLogger(PayloadInvokingContext.class);
public PayloadInvokingContext() {
}
public void setRequestOutMessageContent(Message message, Map contents) {
PayloadMessage request = (PayloadMessage)contents.get(PayloadMessage.class);
List headers = request.getHeaders();
List payload = request.getPayload();
if (LOG.isLoggable(Level.FINEST)) {
LOG.finest("header = " + headers + ", paylaod = " + payload);
}
message.put(Header.HEADER_LIST, headers);
message.put(List.class, payload);
}
@SuppressWarnings("unchecked")
public Object getResponseObject(Exchange exchange, Map responseContext) {
PayloadMessage payloadMsg = null;
Message msg = exchange.getInMessage();
List payload = getResponseObject(msg , responseContext, List.class);
List header = CastUtils.cast((List>)exchange.getInMessage().get(Header.HEADER_LIST));
payloadMsg = new PayloadMessage(payload, header);
if (LOG.isLoggable(Level.FINEST)) {
LOG.finest(payloadMsg.toString());
}
return payloadMsg;
}
@Override
protected T getResponseObject(Message inMessage, Map responseContext,
Class clazz) {
T retval = null;
if (inMessage != null) {
if (null != responseContext) {
responseContext.putAll(inMessage);
LOG.info("set responseContext to be" + responseContext);
}
retval = inMessage.get(clazz);
}
return retval;
}
public void setResponseContent(Message outMessage, Object resultPayload) {
if (resultPayload != null) {
PayloadMessage payloadMessage = (PayloadMessage) resultPayload;
if (LOG.isLoggable(Level.FINEST)) {
LOG.finest(payloadMessage.toString());
}
outMessage.put(List.class, payloadMessage.getPayload());
outMessage.put(Header.HEADER_LIST, payloadMessage.getHeaders());
}
}
@SuppressWarnings("unchecked")
public Map getRequestContent(Message inMessage) {
List payload = inMessage.get(List.class);
List headers = CastUtils.cast((List>)inMessage.get(Header.HEADER_LIST));
if (LOG.isLoggable(Level.FINEST)) {
LOG.finest("Header = " + headers + ", Payload = " + payload);
}
Map contents = new IdentityHashMap();
contents.put(PayloadMessage.class, new PayloadMessage(payload, headers));
return contents;
}
@Override
protected Logger getLogger() {
return LOG;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy