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.
16 lines
389 B
16 lines
389 B
package javax.sip.header;
|
|
|
|
import javax.sip.InvalidArgumentException;
|
|
|
|
public interface AcceptHeader extends Header, MediaType, Parameters {
|
|
String NAME = "Accept";
|
|
|
|
boolean allowsAllContentSubTypes();
|
|
boolean allowsAllContentTypes();
|
|
|
|
float getQValue();
|
|
void setQValue(float qValue) throws InvalidArgumentException;
|
|
boolean hasQValue();
|
|
void removeQValue();
|
|
}
|