Files
2023-05-14 11:44:44 +00:00

11 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;
}