Home | History | Annotate | Download | only in ims

Lines Matching refs:address

37 import gov.nist.javax.sip.address.AddressImpl;
38 import gov.nist.javax.sip.address.GenericURI;
39 import javax.sip.address.URI;
48 * has allocated to a user for his own usage (address-of-record). </p>
81 * @param address to be set in the header
83 public PAssociatedURI(AddressImpl address)
86 this.address = address;
91 * @param associatedURI - GenericURI to be set in the address of this header
96 this.address = new AddressImpl();
97 this.address.setURI(associatedURI);
110 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
113 retval.append(address.encode());
114 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
126 * <p>Set the URI on this address</p>
127 * @param associatedURI - GenericURI to be set in the address of this header
135 this.address.setURI(associatedURI);
139 * <p>Get the address's URI</p>
140 * @return URI set in the address of this header
143 return this.address.getURI();
149 if (this.address != null)
150 retval.address = (AddressImpl) this.address.clone();