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

nablarch.common.util.RequestIdExtractor Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package nablarch.common.util;

import nablarch.core.util.annotation.Published;

/**
 * リクエストIDの抽出を行うインターフェース。
 *
 * @author Naoki Yamamoto
 */
@Published(tag = "architect")
public interface RequestIdExtractor {
    
    /**
     * リクエストパスからリクエストIDに相当する部分を抜き出す。
     * @param path リクエストパス
     * @return リクエストID
     */
    String getRequestId(String path);
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy