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

com.itzmeds.rac.core.ClientConfiguration Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy