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

com.withabound.resources.base.EmptyQueryParameters Maven / Gradle / Ivy

Go to download

The Abound Java SDK provides convenient access to the Abound API from applications written in Java.

The newest version!
package com.withabound.resources.base;

import java.util.Collections;
import java.util.Map;

class EmptyQueryParameters extends AboundQueryParameters {
  private static EmptyQueryParameters instance;

  public static EmptyQueryParameters getInstance() {
    if (instance == null) {
      instance = new EmptyQueryParameters();
    }

    return instance;
  }

  @Override
  public Map asMap() {
    return Collections.emptyMap();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy