script-astra/Android/Sdk/sources/android-35/javax/sip/header/ViaHeader.java

39 lines
987 B
Java
Raw Normal View History

2025-01-20 15:15:20 +00:00
package javax.sip.header;
import java.text.ParseException;
import javax.sip.InvalidArgumentException;
public interface ViaHeader extends Header, Parameters {
String NAME = "Via";
String getBranch();
void setBranch(String branch) throws ParseException;
String getHost();
void setHost(String host) throws ParseException;
String getMAddr();
void setMAddr(String mAddr) throws ParseException;
int getPort();
void setPort(int port) throws InvalidArgumentException;
String getProtocol();
void setProtocol(String protocol) throws ParseException;
String getReceived();
void setReceived(String received) throws ParseException;
int getRPort();
void setRPort() throws InvalidArgumentException;
String getTransport();
void setTransport(String transport) throws ParseException;
int getTTL();
void setTTL(int ttl) throws InvalidArgumentException;
String getSentByField();
String getSentProtocolField();
}