/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/audit/ |
H A D | AbstractAuthenticationEventAuditor.java | 45 protected final AuditEventFactory eventFactory; field in class:AbstractAuthenticationEventAuditor 51 * @param eventFactory The factory that can be used to create the events. 53 public AbstractAuthenticationEventAuditor(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory) { argument 54 this.eventFactory = eventFactory;
|
H A D | AuthenticationModuleEventAuditor.java | 53 * @param eventFactory The factory that can be used to create the events. 56 public AuthenticationModuleEventAuditor(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory) { argument 57 super(eventPublisher, eventFactory); 113 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm)
|
H A D | AuthenticationProcessEventAuditor.java | 61 * @param eventFactory The factory that can be used to create the events. 64 public AuthenticationProcessEventAuditor(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory) { argument 65 super(eventPublisher, eventFactory); 84 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm) 127 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm) 169 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm)
|
/forgerock/openam-v13/openam-oauth2-common/openid-connect-restlet/src/main/java/org/forgerock/openidconnect/restlet/ |
H A D | WebFinger.java | 55 private final AuditEventFactory eventFactory; field in class:WebFinger 68 eventFactory = InjectorHolder.getInstance(AuditEventFactory.class); 96 return new OAuth2AccessAuditFilter(restlet, eventPublisher, eventFactory, contextProviders, noBodyAuditor(),
|
/forgerock/openam-v13/openam-core/src/test/java/com/sun/identity/authentication/audit/ |
H A D | AbstractAuthenticationEventAuditorTest.java | 38 private AuditEventFactory eventFactory; field in class:AbstractAuthenticationEventAuditorTest 50 auditor = new AbstractAuthenticationEventAuditor(eventPublisher, eventFactory) {
|
H A D | AuthenticationModuleEventAuditorTest.java | 41 private AuditEventFactory eventFactory; field in class:AuthenticationModuleEventAuditorTest 57 when(eventFactory.authenticationEvent(anyString())).thenCallRealMethod(); 58 auditor = new AuthenticationModuleEventAuditor(eventPublisher, eventFactory);
|
H A D | AuthenticationProcessEventAuditorTest.java | 42 private AuditEventFactory eventFactory; field in class:AuthenticationProcessEventAuditorTest 55 when(eventFactory.authenticationEvent(anyString())).thenCallRealMethod(); 56 auditor = new AuthenticationProcessEventAuditor(eventPublisher, eventFactory);
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/restlet/ |
H A D | WebFinger.java | 43 private final AuditEventFactory eventFactory; field in class:WebFinger 54 eventFactory = InjectorHolder.getInstance(AuditEventFactory.class); 81 return new OAuth2AccessAuditFilter(restlet, eventPublisher, eventFactory, requestFactory, noBodyAuditor(),
|
/forgerock/openam/openam-core/src/test/java/com/sun/identity/authentication/audit/ |
H A D | AbstractAuthenticationEventAuditorTest.java | 38 private AuditEventFactory eventFactory; field in class:AbstractAuthenticationEventAuditorTest 50 auditor = new AbstractAuthenticationEventAuditor(eventPublisher, eventFactory) {
|
H A D | AuthenticationModuleEventAuditorTest.java | 41 private AuditEventFactory eventFactory; field in class:AuthenticationModuleEventAuditorTest 57 when(eventFactory.authenticationEvent(anyString())).thenCallRealMethod(); 58 auditor = new AuthenticationModuleEventAuditor(eventPublisher, eventFactory);
|
H A D | AuthenticationProcessEventAuditorTest.java | 42 private AuditEventFactory eventFactory; field in class:AuthenticationProcessEventAuditorTest 55 when(eventFactory.authenticationEvent(anyString())).thenCallRealMethod(); 56 auditor = new AuthenticationProcessEventAuditor(eventPublisher, eventFactory);
|
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/ |
H A D | UmaRouterProvider.java | 49 private final AuditEventFactory eventFactory; field in class:UmaRouterProvider 56 * @param eventFactory The factory that can be used to create the events. 60 public UmaRouterProvider(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory, argument 63 this.eventFactory = eventFactory; 86 return new UMAAccessAuditFilter(restlet, eventPublisher, eventFactory, requestFactory, requestDetailCreator,
|
/forgerock/openam-v13/openam-rest/src/test/java/org/forgerock/openam/rest/audit/ |
H A D | AbstractRestletAccessAuditFilterTest.java | 51 private AuditEventFactory eventFactory; field in class:AbstractRestletAccessAuditFilterTest 68 eventFactory = new AuditEventFactory(); 70 auditFilter = new RestletAccessAuditFilterTest(restlet, eventPublisher, eventFactory, null, null); 94 auditFilter = new RestletAccessAuditFilterTest(restlet, eventPublisher, eventFactory, 117 auditFilter = new RestletAccessAuditFilterTest(restlet, eventPublisher, eventFactory,
|
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/ |
H A D | OAuth2RouterProvider.java | 77 private final AuditEventFactory eventFactory; field in class:OAuth2RouterProvider 86 * @param eventFactory The factory that can be used to create the events. 92 AuditEventPublisher eventPublisher, AuditEventFactory eventFactory, 98 this.eventFactory = eventFactory; 160 return new OAuth2AccessAuditFilter(restlet, eventPublisher, eventFactory, contextProviders, 166 return new OAuth2AccessAuditFilter(restlet, eventPublisher, eventFactory, contextProviders, 91 OAuth2RouterProvider(RestRealmValidator realmValidator, CoreWrapper coreWrapper, AuditEventPublisher eventPublisher, AuditEventFactory eventFactory, @Named(OAUTH2_AUDIT_CONTEXT_PROVIDERS) Set<OAuth2AuditContextProvider> contextProviders, JacksonRepresentationFactory jacksonRepresentationFactory) argument
|
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/rest/ |
H A D | UmaRouterProvider.java | 56 private final AuditEventFactory eventFactory; field in class:UmaRouterProvider 65 * @param eventFactory The factory that can be used to create the events. 71 AuditEventPublisher eventPublisher, AuditEventFactory eventFactory, 76 this.eventFactory = eventFactory; 99 return new UMAAccessAuditFilter(restlet, eventPublisher, eventFactory, contextProviders, requestDetailCreator, 70 UmaRouterProvider(RestRealmValidator realmValidator, CoreWrapper coreWrapper, AuditEventPublisher eventPublisher, AuditEventFactory eventFactory, @Named(OAUTH2_AUDIT_CONTEXT_PROVIDERS) Set<OAuth2AuditContextProvider> contextProviders) argument
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/ |
H A D | OAuth2RouterProvider.java | 70 private final AuditEventFactory eventFactory; field in class:OAuth2RouterProvider 77 * @param eventFactory The factory that can be used to create the events. 82 public OAuth2RouterProvider(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory, argument 86 this.eventFactory = eventFactory; 153 return new OAuth2AccessAuditFilter(restlet, eventPublisher, eventFactory, requestFactory, 159 return new OAuth2AccessAuditFilter(restlet, eventPublisher, eventFactory, requestFactory,
|
/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/rest/audit/ |
H A D | AbstractRestletAccessAuditFilterTest.java | 48 private AuditEventFactory eventFactory; field in class:AbstractRestletAccessAuditFilterTest 65 eventFactory = new AuditEventFactory(); 67 auditFilter = new RestletAccessAuditFilterTest(restlet, eventPublisher, eventFactory, null, null); 91 auditFilter = new RestletAccessAuditFilterTest(restlet, eventPublisher, eventFactory, 114 auditFilter = new RestletAccessAuditFilterTest(restlet, eventPublisher, eventFactory,
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/audit/ |
H A D | AbstractAuthenticationEventAuditor.java | 55 protected final AuditEventFactory eventFactory; field in class:AbstractAuthenticationEventAuditor 61 * @param eventFactory The factory that can be used to create the events. 63 public AbstractAuthenticationEventAuditor(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory) { argument 64 this.eventFactory = eventFactory;
|
H A D | AuthenticationModuleEventAuditor.java | 53 * @param eventFactory The factory that can be used to create the events. 56 public AuthenticationModuleEventAuditor(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory) { argument 57 super(eventPublisher, eventFactory); 107 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm)
|
H A D | AuthenticationProcessEventAuditor.java | 61 * @param eventFactory The factory that can be used to create the events. 64 public AuthenticationProcessEventAuditor(AuditEventPublisher eventPublisher, AuditEventFactory eventFactory) { argument 65 super(eventPublisher, eventFactory); 84 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm) 127 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm) 169 AMAuthenticationAuditEventBuilder builder = eventFactory.authenticationEvent(realm)
|
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/audit/ |
H A D | RadiusAuditLoggerEventBus.java | 79 * @param eventFactory - a factory from which Audit events may be built. 84 public RadiusAuditLoggerEventBus(@Named("RadiusEventBus") EventBus eventBus, AuditEventFactory eventFactory, argument 89 this.auditEventFactory = eventFactory;
|
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/audit/ |
H A D | RadiusAuditLoggerEventBus.java | 78 * @param eventFactory - a factory from which Audit events may be built. 83 public RadiusAuditLoggerEventBus(@Named("RadiusEventBus") EventBus eventBus, AuditEventFactory eventFactory, argument 88 this.auditEventFactory = eventFactory;
|