android_mt6572_jiabo/external/nist-sip/java/javax/sip/header/AllowEventsHeader.java
2025-09-05 16:56:03 +08:00

10 lines
240 B
Java

package javax.sip.header;
import java.text.ParseException;
public interface AllowEventsHeader extends Header {
String NAME = "Allow-Events";
String getEventType();
void setEventType(String eventType) throws ParseException;
}