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

11 lines
240 B
Java
Raw Normal View History

2025-01-20 15:15:20 +00:00
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;
}