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

prerna.auth.EngineAccessRequest Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
package prerna.auth;

public class EngineAccessRequest {
	private String requestId;
	private String userName;
	private String engineName;
	
	public EngineAccessRequest(String requestId, String userId, String engineName) {
		this.requestId = requestId;
		this.userName = userId;
		this.engineName = engineName;
	}
	
	public String getRequestId() {
		return this.requestId;
	}
	
	public String getUser() {
		return this.userName;
	}
	
	public String getEngineRequested() {
		return this.engineName;
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy