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 android.gov.nist.javax.sip.header;

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

import android.javax.sip.address.Address;
import android.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 - 2024 Weber Informatics LLC | Privacy Policy