OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlertInfo
(Results
1 - 7
of
7
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfoList.java
31
*
AlertInfo
SIPHeader - there can be several
AlertInfo
headers.
38
public class AlertInfoList extends SIPHeaderList<
AlertInfo
> {
55
super(
AlertInfo
.class,AlertInfoHeader.NAME);
AlertInfo.java
35
*
AlertInfo
SIP Header.
45
public final class
AlertInfo
62
public
AlertInfo
() {
100
* Returns the
AlertInfo
value of this AlertInfoHeader.
101
* @return the URI representing the
AlertInfo
.
120
AlertInfo
retval = (
AlertInfo
) super.clone();
NameMap.java
95
putNameMap(ALERT_INFO,
AlertInfo
.class.getName()); //9
HeaderFactoryImpl.java
136
* Creates a new AlertInfoHeader based on the newly supplied
alertInfo
value.
138
* @param
alertInfo
- the new URI value of the
alertInfo
142
public AlertInfoHeader createAlertInfoHeader(URI
alertInfo
) {
143
if (
alertInfo
== null)
144
throw new NullPointerException("null arg
alertInfo
");
145
AlertInfo
a = new
AlertInfo
();
146
a.setAlertInfo(
alertInfo
);
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
AlertInfoParser.java
29
import gov.nist.javax.sip.header.
AlertInfo
;
37
* Parser for
AlertInfo
header.
48
* Creates a new instance of
AlertInfo
Parser
49
* @param
alertInfo
the header to parse
51
public AlertInfoParser(String
alertInfo
) {
52
super(
alertInfo
);
64
* parse the
AlertInfo
String header
78
AlertInfo
alertInfo
= new
AlertInfo
();
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java
87
headerListTable.put(
AlertInfo
.class, AlertInfoList.class);
SIPMessage.java
34
import gov.nist.javax.sip.header.
AlertInfo
;
187
return sipHeader instanceof
AlertInfo
|| sipHeader instanceof InReplyTo
[
all
...]
Completed in 331 milliseconds