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

com.sap.hcp.cf.logging.servlet.dynlog.DynamicLogLevelConfiguration Maven / Gradle / Ivy

The newest version!
package com.sap.hcp.cf.logging.servlet.dynlog;

import java.security.interfaces.RSAPublicKey;

import jakarta.servlet.http.HttpServletRequest;

@FunctionalInterface
public interface DynamicLogLevelConfiguration {

    RSAPublicKey getRsaPublicKey();

    default String getDynLogHeaderKey() {
        return "SAP-LOG-LEVEL";
    };

    default String getDynLogHeaderValue(HttpServletRequest httpRequest) {
        return httpRequest.getHeader(getDynLogHeaderKey());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy