| Summary: | getEndPoint() needed | ||
|---|---|---|---|
| Product: | [RT] Jetty | Reporter: | janbo999 <janbo999> |
| Component: | other | Assignee: | Greg Wilkins <gregw> |
| Status: | CLOSED WORKSFORME | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | mgorovoy |
| Version: | 8.0.0 | ||
| Target Milestone: | 7.5.x | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
janbo999
Greetings,
Jetty has an AbstractConnection.getEndPoint() method that you should be able to use by adding a following method to your class.
public static EndPoint getEndPoint(Connection connection)
{
EndPoint endPoint = null;
if (connection != null && (connection instanceof AbstractConnection))
{
endPoint = ((AbstractConnection)connection).getEndPoint();
}
return endPoint;
}
-Michael
Greg, could you please review this ticket for possible inclusion of suggested method Connection.getEndPoint() into Jetty 7.5.0 release. -Michael Resolved -> Closed |