Package net.officefloor.server.http
Interface HttpEscalationContext
-
public interface HttpEscalationContext
Context for theHttpEscalationHandler
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Throwable
getEscalation()
Obtains theEscalation
.ServerHttpConnection
getServerHttpConnection()
Obtains theServerHttpConnection
to write theEscalation
.boolean
isIncludeStacktrace()
Indicates whether the stack trace should be included.
-
-
-
Method Detail
-
getEscalation
java.lang.Throwable getEscalation()
Obtains theEscalation
.- Returns:
Escalation
.
-
isIncludeStacktrace
boolean isIncludeStacktrace()
Indicates whether the stack trace should be included.- Returns:
true
to include the stack trace.
-
getServerHttpConnection
ServerHttpConnection getServerHttpConnection()
Obtains theServerHttpConnection
to write theEscalation
.- Returns:
ServerHttpConnection
.
-
-