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

gov.nist.javax.sip.message.Content Maven / Gradle / Ivy

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

import javax.sip.header.ContentDispositionHeader;
import javax.sip.header.ContentTypeHeader;

public interface Content {

    public abstract void setContent(Object content);
    
    public abstract Object getContent();
 
    public abstract ContentTypeHeader getContentTypeHeader();
    
    public abstract ContentDispositionHeader getContentDispositionHeader();

    /**
     * The default packing method. This packs the content to be appended to the
     * sip message.
     * 
     */
    public abstract String toString();

 
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy