OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:STALE
(Results
1 - 3
of
3
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
Challenge.java
53
private static String
STALE
= ParameterNames.
STALE
;
149
return (String) authParams.getValue(
STALE
);
AuthenticationHeader.java
62
public static final String
STALE
= ParameterNames.
STALE
;
395
* Sets the value of the
stale
parameter of the WWWAuthenicateHeader to the
396
* <var>
stale
</var> parameter value.
398
* @param
stale
-
399
* the Boolean.valueOf value of the
stale
parameter.
402
public void setStale(boolean
stale
) {
403
setParameter(new NameValue(ParameterNames.
STALE
, Boolean.valueOf(
stale
)));
410
* @return the boolean representing if the challenge is
stale
[
all
...]
ParameterNames.java
81
public static final String
STALE
= "
stale
";
Completed in 192 milliseconds