| | |
| | | boolean continuePluginProcessing, |
| | | boolean sendResponseImmediately) |
| | | { |
| | | |
| | | this.connectionTerminated = connectionTerminated; |
| | | this.continuePluginProcessing = continuePluginProcessing; |
| | | this.sendResponseImmediately = sendResponseImmediately; |
| | |
| | | */ |
| | | public boolean connectionTerminated() |
| | | { |
| | | |
| | | return connectionTerminated; |
| | | } |
| | | |
| | |
| | | */ |
| | | public boolean continuePluginProcessing() |
| | | { |
| | | |
| | | return continuePluginProcessing; |
| | | } |
| | | |
| | |
| | | */ |
| | | public boolean sendResponseImmediately() |
| | | { |
| | | |
| | | return sendResponseImmediately; |
| | | } |
| | | |
| | |
| | | */ |
| | | public String toString() |
| | | { |
| | | |
| | | StringBuilder buffer = new StringBuilder(); |
| | | toString(buffer); |
| | | return buffer.toString(); |
| | |
| | | */ |
| | | public void toString(StringBuilder buffer) |
| | | { |
| | | |
| | | buffer.append("PostResponsePluginResult(connectionTerminated="); |
| | | buffer.append(connectionTerminated); |
| | | buffer.append(", continuePluginProcessing="); |