|
| sqlite_ops (Context context) |
|
void | onCreate (SQLiteDatabase db) |
|
void | initFirebase () |
| Initialises the firebase. More...
|
|
void | AddSlotsToFirebase () |
| Adds all the slots to the firebase. More...
|
|
void | onUpgrade (SQLiteDatabase sqLiteDatabase, int i, int i1) |
| Drops all the tables if the version of the sqlite is updated. More...
|
|
boolean | fetch_login_details (final login li, final login_activity la) |
| Fetches the login details from the firebase and compares with the entered login credentials. Return true if the entered credential is correct otherwise false. More...
|
|
boolean | check_in (checkin_details cd, final checkin ci) |
| Inserts the check-in details in firebase and updates the available slots Return true if the entered credential is correct otherwise false. More...
|
|
ArrayList | getFreeSlots (final category_wise_availability cd, String category) |
| Returns the ArrayList of available free slots. More...
|
|
ArrayList | getAllSlots (String category) |
| Returns the ArrayList of all the slots corresponding to the given category. More...
|
|
void | getTicketDetails (String ticket_no, final ticket tc) |
| Returns the ticket details corresponding to a ticket number. More...
|
|
long | lastIndexRecords () |
|
ArrayList | fetch_ticket_detail (long ticket) |
| Returns the ticket details corresponding to a ticket number. More...
|
|
void | fetch_slot_details (String slot, final checkout co) |
| Returns the slot details corresponding to a slot. More...
|
|
void | check_out (String slot, final String tkt, long checkInDateTime, final checkout co) |
| Checkouts and adds the freed slot to the available slot pool. More...
|
|
void | updateBalance (String uname, int balance) |
|
void | getAllFilledSlotDetails (final currentParks cp) |
|