de.comhix.web.auth.internal.InternalUserProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-base Show documentation
Show all versions of jetty-base Show documentation
Package with all needed dependencies for jetty-webapps.
package de.comhix.web.auth.internal;
import com.google.inject.servlet.SessionScoped;
/**
* @author Benjamin Beeker
*/
@SessionScoped
public class InternalUserProvider {
private String user;
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
}