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

org.openforis.web.server.WebAppConfiguration Maven / Gradle / Ivy

package org.openforis.web.server;

public class WebAppConfiguration {
	
	private String warFileLocation;
	private String context;
	
	public WebAppConfiguration(String warFileLocation, String context) {
		super();
		this.warFileLocation = warFileLocation;
		this.context = context;
	}
	
	public String getWarFileLocation() {
		return warFileLocation;
	}
	
	public String getContext() {
		return context;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy