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

com.enonic.xp.web.handler.WebHandler Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.web.handler;

import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.web.WebRequest;
import com.enonic.xp.web.WebResponse;

@PublicApi
public interface WebHandler
{
    int MIN_ORDER = Integer.MIN_VALUE;

    int MAX_ORDER = Integer.MAX_VALUE;

    int getOrder();

    WebResponse handle( WebRequest webRequest, WebResponse webResponse, WebHandlerChain webHandlerChain )
        throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy