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 java.util.Iterator;

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

public interface Content {

  public abstract void setContent(Object content);

  public abstract Object getContent();

  public abstract ContentTypeHeader getContentTypeHeader();

  public abstract ContentDispositionHeader getContentDispositionHeader();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy