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();
}
@Override
@Deprecated
public long getConversationID()
{
return getRequest().getConversationID();
}
@Override
public <T extends ResponseListener> List<T> getListeners(Class<T> listenerClass)
{

View File

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

View File

@ -87,13 +87,6 @@ public class HttpResponse implements Response
return headers;
}
@Override
@Deprecated
public long getConversationID()
{
return request.getConversationID();
}
@Override
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
{
/**
* @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"
*/

View File

@ -45,13 +45,6 @@ public interface Response
*/
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)}
*/