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

com.yahoo.container.jdisc.utils.CapabilityRequiringRequestHandler Maven / Gradle / Ivy

There is a newer version: 8.458.13
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.container.jdisc.utils;

import com.yahoo.container.jdisc.RequestView;
import com.yahoo.jdisc.handler.RequestHandler;
import com.yahoo.security.tls.Capability;
import com.yahoo.security.tls.CapabilitySet;

/**
 * @author bjorncs
 */
public interface CapabilityRequiringRequestHandler extends RequestHandler {
    Capability DEFAULT_REQUIRED_CAPABILITY = Capability.HTTP_UNCLASSIFIED;

    default CapabilitySet requiredCapabilities(RequestView req) { return requiredCapability(req).toCapabilitySet(); }
    default Capability requiredCapability(RequestView req) { return DEFAULT_REQUIRED_CAPABILITY; }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy