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

com.flowthings.client.response.MapResponse Maven / Gradle / Ivy

package com.flowthings.client.response;

import java.util.HashMap;
import java.util.Map;

public class MapResponse extends Response> {
  public MapResponse(Head head, String key, Object inner) {
    this.head = head;
    body = new HashMap<>();
    body.put(key, inner);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy