com.itzmeds.rac.core.ClientConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-client Show documentation
Show all versions of rest-api-client Show documentation
Java client(Android friendly) for CRUD operations on REST APIs
The newest version!
package com.itzmeds.rac.core;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author itzmeds Configuration class that holds the configurations of all
* RESTful services defined in the input YAML
*/
public class ClientConfiguration {
@JsonProperty("service.url")
private Map serviceUrlConfig;
public Map getServiceUrlConfig() {
return serviceUrlConfig;
}
}