public static Long getAccountNumber()

in sample-app/src/main/java/org/apache/logging/audit/RequestContext.java [104:114]


    public static Long getAccountNumber() {
        String value = ThreadContext.get(ACCOUNT_NUMBER);
        if (value == null || value.length() == 0) {
            return 0L;
        }
        try {
            return Long.parseLong(value);
        } catch (Exception e) {
            return 0L;
        }
    }