blob: ee03d56887205dab7a3491c7db16f8b0c0036095 [file] [log] [blame]
/**
* 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.spring.integration;
import java.util.Map;
import org.apache.camel.impl.DefaultMessage;
/**
* The Message {@link DefaultMessage} implementation
* for accessing the SpringIntegrationMessage
*
* @version
*/
public class SpringIntegrationMessage extends DefaultMessage {
private org.springframework.integration.Message<?> siMessage;
public SpringIntegrationMessage() {
}
public SpringIntegrationMessage(org.springframework.integration.Message<?> message) {
this.siMessage = message;
}
public void setMessage(org.springframework.integration.Message<?> message) {
this.siMessage = message;
}
public org.springframework.integration.Message<?> getMessage() {
return siMessage;
}
@Override
public void copyFrom(org.apache.camel.Message that) {
if (that == this) {
// the same instance so do not need to copy
return;
}
setMessageId(that.getMessageId());
setBody(that.getBody());
getHeaders().putAll(that.getHeaders());
if (that instanceof SpringIntegrationMessage) {
SpringIntegrationMessage orig = (SpringIntegrationMessage) that;
setMessage(orig.getMessage());
}
getAttachments().putAll(that.getAttachments());
}
@Override
public String toString() {
if (siMessage != null) {
return "SpringIntegrationMessage: " + siMessage;
} else {
return "SpringIntegrationMessage: " + getBody();
}
}
public Object getHeader(String name) {
if (siMessage != null) {
return siMessage.getHeaders().get(name);
} else {
return super.getHeader(name);
}
}
@Override
public Map<String, Object> getHeaders() {
if (siMessage != null) {
return siMessage.getHeaders();
} else {
return super.getHeaders();
}
}
@Override
public SpringIntegrationMessage newInstance() {
return new SpringIntegrationMessage();
}
@Override
protected Object createBody() {
return siMessage.getPayload();
}
}