Browse Source

create inbox task

pms
oogee 6 years ago
committed by Thodoris1999
parent
commit
37c9c1e799
  1. 22
      app/src/main/java/gr/thmmy/mthmmy/activities/inbox/tasks/InboxTask.java
  2. 4
      app/src/main/java/gr/thmmy/mthmmy/model/Inbox.java
  3. 4
      app/src/main/java/gr/thmmy/mthmmy/model/PM.java

22
app/src/main/java/gr/thmmy/mthmmy/activities/inbox/tasks/InboxTask.java

@ -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;
}
}

4
app/src/main/java/gr/thmmy/mthmmy/model/Inbox.java

@ -0,0 +1,4 @@
package gr.thmmy.mthmmy.model;
public class Inbox {
}

4
app/src/main/java/gr/thmmy/mthmmy/model/PM.java

@ -0,0 +1,4 @@
package gr.thmmy.mthmmy.model;
public class PM {
}
Loading…
Cancel
Save