com.testingsyndicate.jms.responder.model.BodySource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jms-responder-core Show documentation
Show all versions of jms-responder-core Show documentation
A stub for JMS Request/Reply
package com.testingsyndicate.jms.responder.model;
public final class BodySource {
private final String body;
public BodySource(String body) {
this.body = body;
}
public String getBody() {
return body;
}
}