• 環境コンテキスト情報が参照可能なロジックを生成します。

    Returns {
        getCurrentLocale: () => string;
        getCurrentUserName: () => string;
        getServletContextName: () => string;
        getStaticContentPath: () => string;
        getTenantContextPath: () => string;
    }

    • getCurrentLocale: () => string
    • getCurrentUserName: () => string
    • getServletContextName: () => string
    • getStaticContentPath: () => string
    • getTenantContextPath: () => string
    const { getTenantContextPath } = Mdc.useEnvironmentContext();
    const tenantContextPath = getTenantContextPath();