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

14 lines
324 B
Java
Raw Normal View History

2025-01-20 15:15:20 +00:00
package javax.sip.header;
import java.text.ParseException;
public interface EventHeader extends Header, Parameters {
String NAME = "Event";
String getEventId();
void setEventId(String eventId) throws ParseException;
String getEventType();
void setEventType(String eventType) throws ParseException;
}