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

com.networknt.tram.command.consumer.DestinationRootObject Maven / Gradle / Ivy

package com.networknt.tram.command.consumer;

import java.util.Map;

public class DestinationRootObject {
  private final Object parameter;
  private final Object result;
  private Map path;

  public DestinationRootObject(Object parameter, Object result, Map path) {
    this.parameter = parameter;
    this.result = result;
    this.path = path;
  }

  public Object getParameter() {
    return parameter;
  }

  public Object getResult() {
    return result;
  }

  public Map getPath() {
    return path;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy