Removed deprecated getConversationID() method.
This commit is contained in:
parent
8521a7875a
commit
0e4a903764
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -98,12 +98,6 @@ public class HttpRequest implements Request
|
|||
return conversation;
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getConversationID()
|
||||
{
|
||||
return getConversation().getID();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getScheme()
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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"
|
||||
*/
|
||||
|
|
|
@ -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)}
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue