package io.undertow.security.api;
import io.undertow.security.idm.Account;
import io.undertow.server.HttpServerExchange;
public class SecurityNotification {
private final HttpServerExchange exchange;
private final EventType eventType;
private final Account account;
private final String mechanism;
private final boolean programatic;
private final String message;
private final boolean cachingRequired;
public SecurityNotification(final HttpServerExchange exchange, final EventType eventType, final Account account, final String mechanism, final boolean programatic, final String message, boolean cachingRequired) {
this.exchange = exchange;
this.eventType = eventType;
this.account = account;
this.mechanism = mechanism;
this.programatic = programatic;
this.message = message;
this.cachingRequired = cachingRequired;
}
public HttpServerExchange getExchange() {
return exchange;
}
public EventType getEventType() {
return eventType;
}
public Account getAccount() {
return account;
}
public String getMechanism() {
return mechanism;
}
public boolean isProgramatic() {
return programatic;
}
public String getMessage() {
return message;
}
public boolean isCachingRequired() {
return cachingRequired;
}
public enum EventType {
AUTHENTICATED, FAILED_AUTHENTICATION, LOGGED_OUT;
}
}