11 lines
218 B
Java
11 lines
218 B
Java
package javax.sip.header;
|
|
|
|
import java.text.ParseException;
|
|
|
|
public interface AllowHeader extends Header {
|
|
String NAME = "Allow";
|
|
|
|
String getMethod();
|
|
void setMethod(String method) throws ParseException;
|
|
}
|