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

controllers.SessionController Maven / Gradle / Ivy

The newest version!
package controllers;

import mangoo.io.routing.Response;
import mangoo.io.routing.bindings.Session;

public class SessionController {
    public Response session(Session session) {
        session.add("foo", "this is a session value");
        
        return Response.withOk().andEmptyBody();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy