OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CNONCE
(Results
1 - 4
of
4
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java
51
private static String
CNONCE
= ParameterNames.
CNONCE
;
116
else if (nameValue.getName().compareToIgnoreCase(
CNONCE
) == 0)
AuthenticationInfo.java
90
/** Returns the
CNonce
value of this AuthenticationInfoHeader.
92
* @return the String representing the
cNonce
information, null if value is
97
return this.getParameter(ParameterNames.
CNONCE
);
139
/** Sets the
CNonce
of the AuthenticationInfoHeader to the <var>
cNonce
</var>
142
* @param
cNonce
- the new
cNonce
String of this AuthenticationInfoHeader.
144
* unexpectedly while parsing the
cNonce
value.
147
public void setCNonce(String
cNonce
) throws ParseException {
148
this.setParameter(ParameterNames.
CNONCE
, cNonce)
[
all
...]
AuthenticationHeader.java
76
public static final String
CNONCE
= ParameterNames.
CNONCE
;
111
|| name.equalsIgnoreCase(ParameterNames.
CNONCE
)
418
* Set the
CNonce
.
420
* @param
cnonce
--
423
public void setCNonce(String
cnonce
) throws ParseException {
424
this.setParameter(ParameterNames.
CNONCE
,
cnonce
);
428
* Get the
CNonce
.
430
* @return the
cnonce
value
[
all
...]
ParameterNames.java
50
public static final String
CNONCE
= "
cnonce
";
Completed in 192 milliseconds