/** * 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.util; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementWrapper; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlValue; /** * A model of a message dump from {@link MessageHelper#dumpAsXml(org.apache.camel.Message)}. */ @XmlRootElement(name = "message") @XmlAccessorType(XmlAccessType.FIELD) public final class MessageDump { /** * A model of a message dump header. */ @XmlRootElement(name = "header") @XmlAccessorType(XmlAccessType.FIELD) public static class Header { @XmlAttribute private String key; @XmlAttribute private String type; @XmlValue private String value; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } } /** * A model of a message dump body. */ @XmlRootElement(name = "body") @XmlAccessorType(XmlAccessType.FIELD) public static class Body { @XmlAttribute private String type; @XmlValue private String value; public String getType() { return type; } public void setType(String type) { this.type = type; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } } @XmlAttribute private String exchangeId; @XmlElementWrapper(name = "headers") @XmlElements({ @XmlElement(type = Header.class, name = "header") }) private List<Header> headers; @XmlElementRef private Body body; public String getExchangeId() { return exchangeId; } public void setExchangeId(String exchangeId) { this.exchangeId = exchangeId; } public List<Header> getHeaders() { return headers; } public void setHeaders(List<Header> headers) { this.headers = headers; } public Body getBody() { return body; } public void setBody(Body body) { this.body = body; } }