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

forklift.replay.ReplayMsg Maven / Gradle / Ivy

There is a newer version: 3.8
Show newest version
package forklift.replay;

import forklift.consumer.ProcessStep;

import java.util.List;
import java.util.Map;

public class ReplayMsg {
    String messageId;
    String queue;
    String topic;
    ProcessStep step;
    String text;
    Map headers;
    Map properties;
    List errors;
    String time;

    public String getMessageId() {
        return messageId;
    }

    public String getQueue() {
        return queue;
    }

    public String getTopic() {
        return topic;
    }

    public ProcessStep getStep() {
        return step;
    }

    public String getText() {
        return text;
    }

    public Map getHeaders() {
        return headers;
    }

    public Map getProperties() {
        return properties;
    }

    public List getErrors() {
        return errors;
    }

    public String getTime() {
        return time;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy