Removed deprecated getConversationID() method.

This commit is contained in:
Simone Bordet 2014-05-07 14:59:14 +02:00
parent 8521a7875a
commit 0e4a903764
5 changed files with 0 additions and 34 deletions

View File

@ -48,13 +48,6 @@ public class HttpContentResponse implements ContentResponse
return response.getRequest(); return response.getRequest();
} }
@Override
@Deprecated
public long getConversationID()
{
return getRequest().getConversationID();
}
@Override @Override
public <T extends ResponseListener> List<T> getListeners(Class<T> listenerClass) public <T extends ResponseListener> List<T> getListeners(Class<T> listenerClass)
{ {

View File

@ -98,12 +98,6 @@ public class HttpRequest implements Request
return conversation; return conversation;
} }
@Override
public long getConversationID()
{
return getConversation().getID();
}
@Override @Override
public String getScheme() public String getScheme()
{ {

View File

@ -87,13 +87,6 @@ public class HttpResponse implements Response
return headers; return headers;
} }
@Override
@Deprecated
public long getConversationID()
{
return request.getConversationID();
}
@Override @Override
public <T extends ResponseListener> List<T> getListeners(Class<T> type) public <T extends ResponseListener> List<T> getListeners(Class<T> type)
{ {

View File

@ -49,13 +49,6 @@ import org.eclipse.jetty.util.Fields;
*/ */
public interface Request public interface Request
{ {
/**
* @return the conversation id
* @deprecated do not use this method anymore
*/
@Deprecated
long getConversationID();
/** /**
* @return the scheme of this request, such as "http" or "https" * @return the scheme of this request, such as "http" or "https"
*/ */

View File

@ -45,13 +45,6 @@ public interface Response
*/ */
Request getRequest(); Request getRequest();
/**
* @return the conversation id
* @deprecated do not use this method anymore
*/
@Deprecated
long getConversationID();
/** /**
* @return the response listener passed to {@link Request#send(CompleteListener)} * @return the response listener passed to {@link Request#send(CompleteListener)}
*/ */