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

automation.library.api.core.RestContext Maven / Gradle / Ivy

Go to download

The 'api' library contains a set of java helper classes that support api testing by leveraging Rest-Assured.

The newest version!
package automation.library.api.core;

/**
 * POJO to hold the current rest api call context data
 */
public class RestContext {
	
	private RestData rest;
	
	public RestData getRestData(){
		if (rest == null){
			rest = new RestData();
		}
		return rest;
	}
	
	public void setRestData(RestData rest){
		this.rest = rest;
	}
		

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy