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

sdp.EMail Maven / Gradle / Ivy

/*
 * EMail.java
 *
 * Created on December 18, 2001, 4:56 PM
 */

package javax.sdp;

/** An EMail represents an e= field contained within a SessionDescription. 
 *
 *   Please refer to IETF RFC 2327 for a description of SDP. 
 *
 * @author  deruelle
 * @version 1.0
 */
public interface EMail extends Field {

    /** Returns the value.
     */
    public String getValue() throws SdpParseException;
    
    /** Set the value.
     */
    public void setValue(String value) throws SdpException;

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy