mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
#ifdef MOZ_WEBSMS_BACKEND
|
|
import org.mozilla.gecko.GeckoSmsManager;
|
|
#endif
|
|
|
|
class SmsManager
|
|
{
|
|
static private ISmsManager sInstance = null;
|
|
|
|
static public ISmsManager getInstance() {
|
|
#ifdef MOZ_WEBSMS_BACKEND
|
|
if (sInstance == null) {
|
|
sInstance = new GeckoSmsManager();
|
|
}
|
|
#endif
|
|
return sInstance;
|
|
}
|
|
}
|
|
|
|
interface ISmsManager
|
|
{
|
|
public void start();
|
|
public void stop();
|
|
public void shutdown();
|
|
|
|
public void send(String aNumber, String aMessage, int aRequestId);
|
|
public void getMessage(int aMessageId, int aRequestId);
|
|
public void deleteMessage(int aMessageId, int aRequestId);
|
|
public void createMessageList(long aStartDate, long aEndDate, String[] aNumbers, int aNumbersCount, int aDeliveryState, boolean aReverse, int aRequestId);
|
|
public void getNextMessageInList(int aListId, int aRequestId);
|
|
public void clearMessageList(int aListId);
|
|
}
|