be.unamur.inference.web.apache.ApacheUserSession Maven / Gradle / Ivy
package be.unamur.inference.web.apache;
import be.unamur.inference.web.UserSession;
/**
* This class represents sessions on an Apache web server. Those sessions
* contains {@link ApacheUserRequest}s.
*
* @author Xavier Devroey - [email protected]
* @see ApacheUserRequest
*
*/
public class ApacheUserSession extends UserSession {
/**
* Creates a new Apache user sessions with the given user id.
*
* @param userId The id of the user issuing the session.
*/
public ApacheUserSession(String userId) {
super(userId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy