Searched defs:optionTag (Results 1 - 7 of 7) sorted by relevance

/external/nist-sip/java/javax/sip/header/
H A DOptionTag.java7 void setOptionTag(String optionTag) throws ParseException; argument
H A DHeaderFactory.java109 ProxyRequireHeader createProxyRequireHeader(String optionTag) argument
131 RequireHeader createRequireHeader(String optionTag) throws ParseException; argument
159 SupportedHeader createSupportedHeader(String optionTag) argument
167 UnsupportedHeader createUnsupportedHeader(String optionTag) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DProxyRequire.java54 protected String optionTag; field in class:ProxyRequire
68 optionTag = s;
76 return optionTag;
80 * Sets the option tag value to the new supplied <var>optionTag</var>
83 * @param optionTag - the new string value of the option tag.
85 * unexpectedly while parsing the optionTag value.
87 public void setOptionTag(String optionTag) throws ParseException { argument
88 if (optionTag == null)
89 throw new NullPointerException("JAIN-SIP Exception, ProxyRequire, setOptionTag(), the optionTag parameter is null");
90 this.optionTag
[all...]
H A DRequire.java50 /** optionTag field
52 protected String optionTag; field in class:Require
66 optionTag = s;
74 return optionTag;
78 * Sets the option tag value to the new supplied <var>optionTag</var>
81 * @param optionTag - the new string value of the option tag.
83 * unexpectedly while parsing the optionTag value.
85 public void setOptionTag(String optionTag) throws ParseException { argument
86 if (optionTag == null)
89 + "setOptionTag(), the optionTag paramete
[all...]
H A DSupported.java53 protected String optionTag; field in class:Supported
60 optionTag = null;
69 optionTag = option_tag;
78 if (optionTag != null)
79 retval += SP + optionTag;
89 return optionTag != null ? optionTag : "";
93 * Sets the option tag value to the new supplied <var>optionTag</var>
96 * @param optionTag - the new string value of the option tag.
98 * unexpectedly while parsing the optionTag valu
100 setOptionTag(String optionTag) argument
[all...]
H A DUnsupported.java52 protected String optionTag; field in class:Unsupported
65 optionTag = ot;
73 return optionTag;
80 return optionTag;
92 optionTag = o;
H A DHeaderFactoryImpl.java704 * Creates a new ProxyRequireHeader based on the newly supplied optionTag
707 * @param optionTag - the new string OptionTag value.
710 * unexpectedly while parsing the optionTag value.
712 public ProxyRequireHeader createProxyRequireHeader(String optionTag) argument
714 if (optionTag == null)
715 throw new NullPointerException("bad optionTag arg");
717 p.setOptionTag(optionTag);
851 * Creates a new RequireHeader based on the newly supplied optionTag
854 * @param optionTag - the new string value containing the optionTag valu
859 createRequireHeader(String optionTag) argument
968 createSupportedHeader(String optionTag) argument
1027 createUnsupportedHeader(String optionTag) argument
[all...]

Completed in 187 milliseconds