Android Open Source - restcomm-android-sdk Sip Event From Project Back to project page restcomm-android-sdk .
License The source code is released under:
GNU General Public License
If you think the Android project restcomm-android-sdk 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 org.mobicents.restcomm.android.sdk.impl;
/ / w w w . j a v a 2 s . c o m
import java.util.EventObject;
public class SipEvent extends EventObject {
public String content;
public String from;
public SipEventType type;
public int remoteRtpPort;
public enum SipEventType {
MESSAGE, BYE, CALL, BUSY_HERE, ACCEPTED, SERVICE_UNAVAILABLE, CALL_CONNECTED, LOCAL_RINGING, DECLINED
}
public SipEvent(Object source, SipEventType type, String content,
String from) {
super (source);
this.type = type;
this.content = content;
this.from = from;
}
public SipEvent(Object source, SipEventType type, String content,
String from, int rtpPort) {
super (source);
this.type = type;
this.content = content;
this.from = from;
this.remoteRtpPort = rtpPort;
}
}
Java Source Code List com.example.sipmessagetest.MainActivity.java com.example.sipmessagetest.SettingsActivity.java org.mobicents.restcomm.android.sdk.IDevice.java org.mobicents.restcomm.android.sdk.ISipEventListener.java org.mobicents.restcomm.android.sdk.ISipManager.java org.mobicents.restcomm.android.sdk.NotInitializedException.java org.mobicents.restcomm.android.sdk.SipManagerState.java org.mobicents.restcomm.android.sdk.SipProfile.java org.mobicents.restcomm.android.sdk.impl.AccountManagerImpl.java org.mobicents.restcomm.android.sdk.impl.DeviceImpl.java org.mobicents.restcomm.android.sdk.impl.SipEvent.java org.mobicents.restcomm.android.sdk.impl.SipManager.java org.mobicents.restcomm.android.sdk.impl.SoundManager.java org.mobicents.restcomm.android.sdk.impl.UserCredentialsImpl.java org.mobicents.restcomm.android.sdk.impl.sipmessages.Invite.java org.mobicents.restcomm.android.sdk.impl.sipmessages.Message.java org.mobicents.restcomm.android.sdk.impl.sipmessages.Register.java org.mobicents.restcomm.android.sdk.ui.IncomingCall.java