xref: /aosp_15_r20/external/nist-sip/java/javax/sip/header/AcceptEncodingHeader.java (revision 4dd4ff528b8b07036318f5d4191b0009f17bc7b3)
1 package javax.sip.header;
2 
3 import javax.sip.InvalidArgumentException;
4 
5 public interface AcceptEncodingHeader extends Encoding, Header, Parameters {
6     String NAME = "Accept-Encoding";
7 
getQValue()8     float getQValue();
setQValue(float qValue)9     void setQValue(float qValue) throws InvalidArgumentException;
10 }
11