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

com.bitmovin.api.sdk.common.QueryMapWrapper Maven / Gradle / Ivy

There is a newer version: 1.205.0
Show newest version
package com.bitmovin.api.sdk.common;

import java.util.HashMap;

/** Intention of this wrapper is to hide the contained Map from feign, forcing it to apply {@link BitmovinQueryMapEncoder} which contains some conversion logic */
public class QueryMapWrapper
{
    private final HashMap queryMap;

    public QueryMapWrapper() {
        this.queryMap = new HashMap<>();
    }

    public QueryMapWrapper(HashMap queryMap) {
        this.queryMap = queryMap;
    }

    public HashMap getQueryMap() {
        return queryMap;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy