Android Open Source - lifesaver Session Dao






From Project

Back to project page lifesaver.

License

The source code is released under:

Copyright (c) 2013 Nitin Dhar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwar...

If you think the Android project lifesaver listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.nitindhar.lifesaver.data;
//  w w w  . j  av a 2  s  . co m
import com.nitindhar.lifesaver.model.Session;

public interface SessionDao {

    public boolean sessionExists();

    public boolean storeSession(Session session);

    public Session retrieveSession();

}




Java Source Code List

com.nitindhar.lifesaver.LifesaverActivity.java
com.nitindhar.lifesaver.data.SessionDao.java
com.nitindhar.lifesaver.data.SessionSharedPreferencesDao.java
com.nitindhar.lifesaver.model.Session.java
com.nitindhar.lifesaver.model.Subway.java