All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nist.javax.sip.header.AddressParameters Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package gov.nist.javax.sip.header;

import java.util.Map;
import java.util.Map.Entry;

import javax.sip.address.Address;
import javax.sip.header.Parameters;

public interface AddressParameters extends Parameters {

	/**
	 * get the Address field
	 * @return the imbedded  Address
	 */
	public abstract Address getAddress();

	/**
	 * set the Address field
	 * @param address Address to set
	 */
	public abstract void setAddress(Address address);
	
	/**
	 * Get the parameters map.
	 * 
	 */
	public abstract Map> getParameters();


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy