You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
475 B
18 lines
475 B
4 months ago
|
package javax.sip.header;
|
||
|
|
||
|
import java.util.Locale;
|
||
|
import javax.sip.InvalidArgumentException;
|
||
|
|
||
|
public interface AcceptLanguageHeader extends Header, Parameters {
|
||
|
String NAME = "Accept-Language";
|
||
|
|
||
|
Locale getAcceptLanguage();
|
||
|
void setAcceptLanguage(Locale acceptLanguage);
|
||
|
void setLanguageRange(String languageRange);
|
||
|
|
||
|
float getQValue();
|
||
|
void setQValue(float qValue) throws InvalidArgumentException;
|
||
|
boolean hasQValue();
|
||
|
void removeQValue();
|
||
|
}
|