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

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

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

import org.immutables.value.Value;

import java.util.Optional;

@Value.Immutable
public interface ContentSteering {
    String serverUri();

    Optional pathwayId();

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

    class Builder extends ContentSteeringBuilder {
    }

    static ContentSteering of(String serverUri, String pathwayId) {
        return builder()
                .serverUri(serverUri)
                .pathwayId(pathwayId)
                .build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy