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

org.webpieces.frontend2.impl.WebSession Maven / Gradle / Ivy

package org.webpieces.frontend2.impl;

import java.util.concurrent.CompletableFuture;

public class WebSession {

	//start out completed
	private CompletableFuture processFuture = CompletableFuture.completedFuture(null);

	public CompletableFuture getProcessFuture() {
		return processFuture;
	}

	public void setProcessFuture(CompletableFuture processFuture) {
		this.processFuture = processFuture;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy