com.viber.bot.api.ApiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viber-bot Show documentation
Show all versions of viber-bot Show documentation
Use this library to communicate with the Viber API to develop a bot for https://developers.viber.com/.
package com.viber.bot.api;
import com.google.common.base.MoreObjects;
import com.google.common.collect.ForwardingMap;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.Map;
/**
* Simple Map(String, Object) wrapper class.
*/
public class ApiResponse extends ForwardingMap {
private final Map map;
ApiResponse(final @Nullable Map delegate) {
this.map = Collections.unmodifiableMap(MoreObjects.firstNonNull(delegate, Collections.emptyMap()));
}
@Override
protected Map delegate() {
return map;
}
}