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

sdp.Info Maven / Gradle / Ivy

/*
 * Info.java
 *
 * Created on December 18, 2001, 5:12 PM
 */

package javax.sdp;

/**An Info represents the i= fields contained within either a MediaDescription
 * or a SessionDescription. 
 *
 *  Please refer to IETF RFC 2327 for a description of SDP. 
 *
 * @author  deruelle
 * @version 1.0
 */
public interface Info 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