Home | History | Annotate | Download | only in header

Lines Matching refs:RECEIVED

67     /** The "received" parameter is added only for receiver-added Via Fields.
69 public static final String RECEIVED = ParameterNames.RECEIVED;
480 * Gets the received paramater of the ViaHeader. Returns null if received
483 * @return the string received value of ViaHeader
486 return getParameter(ParameterNames.RECEIVED);
490 * Sets the received parameter of ViaHeader.
492 * @param received - the newly supplied received parameter.
494 * unexpectedly while parsing the received value.
496 public void setReceived(String received) throws ParseException {
497 if (received == null)
500 + "Via, setReceived(), the received parameter is null.");
502 setParameter(ParameterNames.RECEIVED, received);