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

org.coos.messaging.impl.LocalExchange Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.coos.messaging.impl;

import org.coos.messaging.Message;

public class LocalExchange {
	private Message in;
	private Message out;
	
	public Message getIn() {
		return in;
	}
	public void setIn(Message in) {
		this.in = in;
	}
	public Message getOut() {
		return out;
	}
	public void setOut(Message out) {
		this.out = out;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy