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

js.web.webrtc.RTCSrtpSdesParameters Maven / Gradle / Ivy

package js.web.webrtc;

import js.lang.Any;
import js.util.collections.Array;
import org.teavm.jso.JSByRef;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface RTCSrtpSdesParameters extends Any {
    @JSProperty
    @Nullable
    String getCryptoSuite();

    @JSProperty
    void setCryptoSuite(String cryptoSuite);

    @JSProperty
    @Nullable
    Array getKeyParams();

    @JSProperty
    void setKeyParams(RTCSrtpKeyParam... keyParams);

    @JSProperty
    void setKeyParams(Array keyParams);

    @JSProperty
    @Nullable
    String[] getSessionParams();

    @JSProperty
    void setSessionParams(String... sessionParams);

    @JSProperty
    int getTag();

    @JSProperty
    void setTag(int tag);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy