Uses of Class
org.apache.solr.security.AuditEvent.EventType
-
Packages that use AuditEvent.EventType Package Description org.apache.solr.security Commonly used classes for Solr security framework.org.apache.solr.servlet Servlet related classes for powering the Solr HTTP API -
-
Uses of AuditEvent.EventType in org.apache.solr.security
Methods in org.apache.solr.security that return AuditEvent.EventType Modifier and Type Method Description AuditEvent.EventType
AuditEvent. getEventType()
EventType tells the outcome of the event such as REJECTED, UNAUTHORIZED or ERRORstatic AuditEvent.EventType
AuditEvent.EventType. valueOf(String name)
Returns the enum constant of this type with the specified name.static AuditEvent.EventType[]
AuditEvent.EventType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.solr.security with parameters of type AuditEvent.EventType Modifier and Type Method Description boolean
AuditLoggerPlugin. shouldLog(AuditEvent.EventType eventType)
Checks whether this event type should be logged based on "eventTypes" config parameter.boolean
MultiDestinationAuditLogger. shouldLog(AuditEvent.EventType eventType)
Constructors in org.apache.solr.security with parameters of type AuditEvent.EventType Constructor Description AuditEvent(AuditEvent.EventType eventType)
Empty event, must be filled by user using setters.AuditEvent(AuditEvent.EventType eventType, Throwable exception, javax.servlet.http.HttpServletRequest httpRequest)
Event based on an HttpServletRequest, typically used during authentication.AuditEvent(AuditEvent.EventType eventType, javax.servlet.http.HttpServletRequest httpRequest)
AuditEvent(AuditEvent.EventType eventType, javax.servlet.http.HttpServletRequest httpRequest, AuthorizationContext authorizationContext)
Event based on request and AuthorizationContext.AuditEvent(AuditEvent.EventType eventType, javax.servlet.http.HttpServletRequest httpRequest, AuthorizationContext authorizationContext, double qTime, Throwable exception)
Event to log completed requests. -
Uses of AuditEvent.EventType in org.apache.solr.servlet
Methods in org.apache.solr.servlet with parameters of type AuditEvent.EventType Modifier and Type Method Description static boolean
HttpSolrCall. shouldAudit(CoreContainer cores, AuditEvent.EventType eventType)
boolean
HttpSolrCall. shouldAudit(AuditEvent.EventType eventType)
-