All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.soitoolkit.commons.mule.api.log.EventLogMessage Maven / Gradle / Ivy

There is a newer version: 2.0.0-M6
Show newest version
/* 
 * Licensed to the soi-toolkit project under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The soi-toolkit project 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.soitoolkit.commons.mule.api.log;

import java.util.Map;

import org.mule.api.MuleMessage;

// TODO: document which attributes are mandatory/optional
public class EventLogMessage {
	private MuleMessage muleMessage;
	private String logMessage;
	private String integrationScenario;
	private String contractId;
	private Map businessContextId;
	private Map extraInfo;

	public MuleMessage getMuleMessage() {
		return muleMessage;
	}

	public void setMuleMessage(MuleMessage muleMessage) {
		this.muleMessage = muleMessage;
	}

	public String getLogMessage() {
		return logMessage;
	}

	public void setLogMessage(String logMessage) {
		this.logMessage = logMessage;
	}

	public String getIntegrationScenario() {
		return integrationScenario;
	}

	public void setIntegrationScenario(String integrationScenario) {
		this.integrationScenario = integrationScenario;
	}

	public String getContractId() {
		return contractId;
	}

	public void setContractId(String contractId) {
		this.contractId = contractId;
	}

	public Map getBusinessContextId() {
		return businessContextId;
	}

	public void setBusinessContextId(Map businessContextId) {
		this.businessContextId = businessContextId;
	}

	public Map getExtraInfo() {
		return extraInfo;
	}

	public void setExtraInfo(Map extraInfo) {
		this.extraInfo = extraInfo;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy