mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
92 lines
2.6 KiB
Java
92 lines
2.6 KiB
Java
/*
|
|
LinphoneCore.java
|
|
Copyright (C) 2010 Belledonne Communications, Grenoble, France
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
package org.linphone.core;
|
|
|
|
|
|
|
|
public interface LinphoneCore {
|
|
/*
|
|
* linphone core states
|
|
*/
|
|
public enum GeneralState {
|
|
/* states for GSTATE_GROUP_POWER */
|
|
GSTATE_POWER_OFF(0), /* initial state */
|
|
GSTATE_POWER_STARTUP(1),
|
|
GSTATE_POWER_ON(2),
|
|
GSTATE_POWER_SHUTDOWN(3),
|
|
/* states for GSTATE_GROUP_REG */
|
|
GSTATE_REG_NONE(10), /* initial state */
|
|
GSTATE_REG_OK(11),
|
|
GSTATE_REG_FAILED(12),
|
|
/* states for GSTATE_GROUP_CALL */
|
|
GSTATE_CALL_IDLE(20), /* initial state */
|
|
GSTATE_CALL_OUT_INVITE(21),
|
|
GSTATE_CALL_OUT_CONNECTED(22),
|
|
GSTATE_CALL_IN_INVITE(23),
|
|
GSTATE_CALL_IN_CONNECTED(24),
|
|
GSTATE_CALL_END(25),
|
|
GSTATE_CALL_ERROR(26),
|
|
GSTATE_INVALID(27);
|
|
private final int mValue;
|
|
|
|
GeneralState(int value) {
|
|
mValue = value;
|
|
}
|
|
public static GeneralState fromInt(int value) {
|
|
for (GeneralState state: GeneralState.values()) {
|
|
if (state.mValue == value) return state;
|
|
}
|
|
throw new RuntimeException("sate not found ["+value+"]");
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param identity sip uri sip:jehan@linphone.org
|
|
* @param proxy sip uri (sip:linphone.org)
|
|
* @param route optionnal sip usi (sip:linphone.org)
|
|
* @param register should be initiated
|
|
* @return
|
|
*/
|
|
public LinphoneProxyConfig createProxyConfig(String identity,String proxy,String route,boolean enableRegister) throws LinphoneCoreException;
|
|
/**
|
|
* clear all added proxy config
|
|
*/
|
|
public void clearProxyConfigs();
|
|
|
|
public void addtProxyConfig(LinphoneProxyConfig proxyCfg) throws LinphoneCoreException;
|
|
|
|
public void setDefaultProxyConfig(LinphoneProxyConfig proxyCfg);
|
|
|
|
/**
|
|
* @return null if no default proxy config
|
|
*/
|
|
public LinphoneProxyConfig getDefaultProxyConfig() ;
|
|
|
|
/**
|
|
* clear all the added auth info
|
|
*/
|
|
void clearAuthInfos();
|
|
|
|
void addAuthInfo(LinphoneAuthInfo info);
|
|
|
|
public void invite(String uri);
|
|
|
|
public void iterate();
|
|
}
|