add new call java class

This commit is contained in:
Jehan Monnier 2010-09-10 15:12:34 +02:00
parent 4f622520e7
commit a8e38ccb4d

View file

@ -0,0 +1,78 @@
/*
LinphoneCall.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;
import java.util.Vector;
public interface LinphoneCall {
static class State {
static private Vector values = new Vector();
private final int mValue;
private final String mStringValue;
public final static State Idle = new State(0,"Idle");
public final static State IncomingReceived = new State(1,"IncomingReceived");
public final static State OutgoingInit = new State(2,"OutgoingInit");
public final static State OutgoingProgress = new State(3,"OutgoingProgress");
public final static State OutgoingRinging = new State(4,"OutgoingRinging");
public final static State OutgoingEarlyMedia = new State(5,"OutgoingEarlyMedia");
public final static State Connected = new State(6,"Connected");
public final static State StreamsRunning = new State(7,"StreamsRunning");
public final static State Pausing = new State(8,"Pausing");
public final static State Paused = new State(9,"Paused");
public final static State Resuming = new State(10,"Resuming");
public final static State Refered = new State(11,"Refered");
public final static State Error = new State(12,"Error");
public final static State CallEnd = new State(13,"CallEnd");
private State(int value,String stringValue) {
mValue = value;
values.addElement(this);
mStringValue=stringValue;
}
public static State fromInt(int value) {
for (int i=0; i<values.size();i++) {
State state = (State) values.elementAt(i);
if (state.mValue == value) return state;
}
throw new RuntimeException("state not found ["+value+"]");
}
public String toString() {
return mStringValue;
}
}
/**
* Retrieves the call's current state.
**/
public State getState();
/**
* Returns the remote address associated to this call
*
**/
public LinphoneAddress getRemoteAddress();
public CallDirection getDirection();
/**
* Returns the call log associated to this call.
**/
public LinphoneCallLog getCallLog();
}