Home | History | Annotate | Download | only in address

Lines Matching refs:MADDR

471      *Remove the maddr param if it exists.
475 uriParms.delete(MADDR);
600 * Set the MADDR parameter .
601 * @param mAddr Host Name to set
603 public void setMAddr(String mAddr) {
604 NameValue nameValue = uriParms.getNameValue(MADDR);
606 host.setAddress(mAddr);
610 nameValue = new NameValue(MADDR, host);
762 /** Returns the value of the <code>maddr</code> parameter, or null if this
763 * is not set. This is equivalent to getParameter("maddr").
765 * @return the value of the <code>maddr</code> parameter
768 NameValue maddr = uriParms.getNameValue(MADDR);
769 if (maddr == null)
771 String host = (String) maddr.getValueAsObject();
905 * Sets the value of the <code>maddr</code> parameter of this SipURI. The
906 * maddr parameter indicates the server address to be contacted for this
908 * equivalent to setParameter("maddr", maddr).
910 * @param maddr New value of the <code>maddr</code> parameter
912 public void setMAddrParam(String maddr) throws ParseException {
913 if (maddr == null)
914 throw new NullPointerException("bad maddr");
915 setParameter("maddr", maddr);