Lines Matching defs:configAttributes

44     private Map<String, Set<String>> configAttributes;
51 configAttributes = new HashMap<>();
52 configAttributes.put("enabled", singleton("true"));
53 configAttributes.put("topics", singleton("access"));
54 configAttributes.put("databaseType", singleton("h2"));
55 configAttributes.put("jdbcUrl", singleton("jdbc:h2:mem:audit"));
56 configAttributes.put("driverClassName", singleton("org.h2.Driver"));
57 configAttributes.put("username", singleton("test"));
58 configAttributes.put("password", singleton("password"));
59 configAttributes.put("autoCommit", singleton("true"));
60 configAttributes.put("connectionTimeout", singleton("31200"));
61 configAttributes.put("idleTimeout", singleton("65400"));
62 configAttributes.put("maxLifetime", singleton("1230000"));
63 configAttributes.put("minIdle", singleton("16"));
64 configAttributes.put("maxPoolSize", singleton("17"));
65 configAttributes.put("authenticationEventTable", singleton("authenticationtable"));
66 configAttributes.put("activityEventTable", singleton("activitytable"));
67 configAttributes.put("accessEventTable", singleton("accesstable"));
68 configAttributes.put("configEventTable", singleton("configtable"));
69 configAttributes.put("authenticationEventColumns", singleton("[result]=result"));
70 configAttributes.put("activityEventColumns", singleton("[runAs]=runas"));
71 configAttributes.put("accessEventColumns", singleton("[server/ip]=server_ip"));
72 configAttributes.put("configEventColumns", singleton("[objectId]=objectid"));
73 configAttributes.put("bufferingEnabled", singleton("true"));
74 configAttributes.put("bufferingMaxSize", singleton("5000"));
75 configAttributes.put("bufferingWriteInterval", singleton("60"));
76 configAttributes.put("bufferingWriterThreads", singleton("1"));
77 configAttributes.put("bufferingMaxBatchedEvents", singleton("100"));
85 .withAttributes(configAttributes)