This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
491e8dc
commit 0f2b39c
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
app/src/main/java/org/awesomeapp/messenger/plugin/xmpp/XmppImPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright (C) 2008 Esmertec AG. Copyright (C) 2008 The Android Open Source | ||
* Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package org.awesomeapp.messenger.plugin.xmpp; | ||
|
||
import android.app.Service; | ||
import android.content.Intent; | ||
import android.os.IBinder; | ||
|
||
import org.awesomeapp.messenger.plugin.ImConfigNames; | ||
import org.awesomeapp.messenger.plugin.ImPlugin; | ||
import org.awesomeapp.messenger.plugin.ImpsConfigNames; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
/** Simple example of writing a plug-in for the IM application. */ | ||
public class XmppImPlugin extends Service implements ImPlugin { | ||
|
||
@Override | ||
public IBinder onBind(Intent intent) { | ||
return null; | ||
} | ||
|
||
/** The implementation of IImPlugin defined through AIDL. */ | ||
public Map getProviderConfig() { | ||
HashMap<String, String> config = new HashMap<String, String>(); | ||
// The protocol name MUST be IMPS now. | ||
config.put(ImConfigNames.PROTOCOL_NAME, "XMPP"); | ||
config.put(ImConfigNames.PLUGIN_VERSION, "0.1"); | ||
config.put(ImpsConfigNames.HOST, "http://xmpp.org/services/"); | ||
config.put(ImpsConfigNames.SUPPORT_USER_DEFINED_PRESENCE, "true"); | ||
config.put(ImpsConfigNames.CUSTOM_PRESENCE_MAPPING, | ||
"org.awesomeapp.messenger.plugin.xmpp.XmppPresenceMapping"); | ||
return config; | ||
} | ||
} |