mirror of https://github.com/ThmmyNoLife/mTHMMY
oogee
6 years ago
committed by
Thodoris1999
3 changed files with 30 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||
|
package gr.thmmy.mthmmy.activities.inbox.tasks; |
||||
|
|
||||
|
import org.jsoup.nodes.Document; |
||||
|
|
||||
|
import gr.thmmy.mthmmy.model.Inbox; |
||||
|
import gr.thmmy.mthmmy.utils.parsing.NewParseTask; |
||||
|
import gr.thmmy.mthmmy.utils.parsing.ParseException; |
||||
|
import okhttp3.Response; |
||||
|
|
||||
|
public class InboxTask extends NewParseTask<Inbox> { |
||||
|
@Override |
||||
|
protected Inbox parse(Document document, Response response) throws ParseException { |
||||
|
return null; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
protected int getResultCode(Response response, Inbox data) { |
||||
|
return 0; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
@ -0,0 +1,4 @@ |
|||||
|
package gr.thmmy.mthmmy.model; |
||||
|
|
||||
|
public class Inbox { |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
package gr.thmmy.mthmmy.model; |
||||
|
|
||||
|
public class PM { |
||||
|
} |
Loading…
Reference in new issue