You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
556 B
21 lines
556 B
package javax.sip.header;
|
|
|
|
import java.text.ParseException;
|
|
import javax.sip.InvalidArgumentException;
|
|
|
|
public interface RetryAfterHeader extends Header, Parameters {
|
|
String NAME = "Retry-After";
|
|
|
|
String getComment();
|
|
void setComment(String comment) throws ParseException;
|
|
boolean hasComment();
|
|
void removeComment();
|
|
|
|
int getDuration();
|
|
void setDuration(int duration) throws InvalidArgumentException;
|
|
void removeDuration();
|
|
|
|
int getRetryAfter();
|
|
void setRetryAfter(int retryAfter) throws InvalidArgumentException;
|
|
}
|