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

com.github.alexeylapin.m3u8.model.SegmentKey Maven / Gradle / Ivy

The newest version!
package com.github.alexeylapin.m3u8.model;

import org.immutables.value.Value;

import java.util.Optional;

/**
 * Segment Key (EXT-X-KEY)
 *
 * @see 
 * RFC 8216 - 4.3.2.4.  EXT-X-KEY
 */
@Value.Immutable
public interface SegmentKey {
    KeyMethod method();

    Optional uri();

    Optional iv();

    Optional keyFormat();

    Optional keyFormatVersions();

    static Builder builder() {
        return new Builder();
    }

    class Builder extends SegmentKeyBuilder {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy