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

filters.ContentFilter Maven / Gradle / Ivy

The newest version!
package filters;

import mangoo.io.interfaces.MangooControllerFilter;
import mangoo.io.routing.bindings.Exchange;

public class ContentFilter implements MangooControllerFilter {

    @Override
    public boolean filter(Exchange exchange) {
        exchange.addContent("foo", "bar");

        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy