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

com.fastchar.openapi.FastCharOpenAPIWeb Maven / Gradle / Ivy

The newest version!
package com.fastchar.openapi;

import com.fastchar.core.FastEngine;
import com.fastchar.interfaces.IFastWeb;
import com.fastchar.openapi.interceptor.FastOpenAPIInterceptor;

public class FastCharOpenAPIWeb implements IFastWeb {

    @Override
    public void onInit(FastEngine engine) throws Exception {
        IFastWeb.super.onInit(engine);
        engine.getInterceptors().addRoot(FastOpenAPIInterceptor.class, "/*");

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy