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

com.northernwall.hadrian.utilityHandlers.routingHandler.RouteEntry Maven / Gradle / Ivy

Go to download

Hadrian is a DevOps UI, Inventory, and Auditing system that plugs into other tools to execute actions.

There is a newer version: 1.15.2
Show newest version
package com.northernwall.hadrian.utilityHandlers.routingHandler;

import org.eclipse.jetty.server.Handler;

public class RouteEntry {

    public final TargetRule targetRule;
    public final String targetPattern;
    public final Handler handler;
    public final String name;
    public final boolean logAccess;

    public RouteEntry(TargetRule targetRule, String targetPattern, Handler handler, boolean logAccess) {
        this.targetRule = targetRule;
        this.targetPattern = targetPattern;
        this.handler = handler;
        this.name = handler.getClass().getSimpleName();
        this.logAccess = logAccess;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy