*
* @param httpObject
*/
@SuppressWarnings("unchecked")
private void readHTTP(HttpObject httpObject) {
ConnectionState nextState = getCurrentState();
switch (getCurrentState()) {
case AWAITING_INITIAL:
nextState = readHTTPInitial((I) httpObject);
break;
case AWAITING_CHUNK: