Home | History | Annotate | Download | only in header

Lines Matching refs:Protocol

85     protected Protocol sentProtocol;
105 sentProtocol = new Protocol();
124 /** get the Protocol Version
136 * @return Protocol field
138 public Protocol getSentProtocol() {
208 /** set the Protocol Version
213 sentProtocol = new Protocol();
229 * @param s Protocol to set.
231 public void setSentProtocol(Protocol s) {
372 * which transport protocol to use for sending requests and responses to
386 sentProtocol = new Protocol();
391 * Returns the value of the protocol used.
393 * @return the string value of the protocol paramter of the ViaHeader
402 * Sets the value of the protocol parameter. This parameter specifies
403 * which protocol is used, for example "SIP/2.0".
405 * @param protocol - new value for the protocol parameter
407 * unexpectedly while parsing the protocol value.
409 public void setProtocol(String protocol) throws ParseException {
410 if (protocol == null)
413 + "Via, setProtocol(), the protocol parameter is null.");
416 sentProtocol = new Protocol();
418 sentProtocol.setProtocol(protocol);
536 retval.sentProtocol = (Protocol) this.sentProtocol.clone();