ContentDispositionHeader.java :  » android-platform-external » nist-sip » javax » sip » header » Android Open Source

Android Open Source » android platform external » nist sip 
nist sip » javax » sip » header » ContentDispositionHeader.java
package javax.sip.header;

import java.text.ParseException;

public interface ContentDispositionHeader extends Header, Parameters {
    String NAME = "Content-Disposition";

    String RENDER = "Render";
    String SESSION = "Session";
    String ICON = "Icon";
    String ALERT = "Alert";

    String getDispositionType();
    void setDispositionType(String dispositionType) throws ParseException;

    String getHandling();
    void setHandling(String handling) throws ParseException;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.