Package com.opencloud.javax.sip.header
Interface ParametersHeaderExt
-
- All Superinterfaces:
Cloneable
,javax.sip.header.Header
,HeaderExt
,javax.sip.header.Parameters
,Serializable
public interface ParametersHeaderExt extends HeaderExt, javax.sip.header.Parameters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<String>
getParameterNames()
Iterator<Map.Entry<String,String>>
getParameters()
String
getValueWithoutParameters()
Get value of this header as a string, not including parameters.void
setValueWithoutParameters(String value)
Sets the header's value, excluding parameters, from a string.
-
-
-
Method Detail
-
getValueWithoutParameters
String getValueWithoutParameters()
Get value of this header as a string, not including parameters.- Returns:
- the header value encoded as a string
-
setValueWithoutParameters
void setValueWithoutParameters(String value) throws ParseException
Sets the header's value, excluding parameters, from a string. Any parameters present in the header are untouched.- Parameters:
value
- the new header value. Any header parameters in the string are ignored- Throws:
ParseException
- if unable to parse the new header value
-
getParameterNames
Iterator<String> getParameterNames()
- Specified by:
getParameterNames
in interfacejavax.sip.header.Parameters
-
-