|
1 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
4 |
|
5 package org.mozilla.gecko.sync.net; |
|
6 |
|
7 import ch.boye.httpclientandroidlib.HttpResponse; |
|
8 |
|
9 public interface HttpResponseObserver { |
|
10 /** |
|
11 * Observe an HTTP response. |
|
12 * |
|
13 * @param response |
|
14 * The <code>HttpResponse</code> to observe. |
|
15 */ |
|
16 public void observeHttpResponse(HttpResponse response); |
|
17 } |