com.azure.resourcemanager.mediaservices.models.CbcsDrmConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Class to specify DRM configurations of CommonEncryptionCbcs scheme in Streaming Policy. */
@Fluent
public final class CbcsDrmConfiguration {
/*
* FairPlay configurations
*/
@JsonProperty(value = "fairPlay")
private StreamingPolicyFairPlayConfiguration fairPlay;
/*
* PlayReady configurations
*/
@JsonProperty(value = "playReady")
private StreamingPolicyPlayReadyConfiguration playReady;
/*
* Widevine configurations
*/
@JsonProperty(value = "widevine")
private StreamingPolicyWidevineConfiguration widevine;
/**
* Get the fairPlay property: FairPlay configurations.
*
* @return the fairPlay value.
*/
public StreamingPolicyFairPlayConfiguration fairPlay() {
return this.fairPlay;
}
/**
* Set the fairPlay property: FairPlay configurations.
*
* @param fairPlay the fairPlay value to set.
* @return the CbcsDrmConfiguration object itself.
*/
public CbcsDrmConfiguration withFairPlay(StreamingPolicyFairPlayConfiguration fairPlay) {
this.fairPlay = fairPlay;
return this;
}
/**
* Get the playReady property: PlayReady configurations.
*
* @return the playReady value.
*/
public StreamingPolicyPlayReadyConfiguration playReady() {
return this.playReady;
}
/**
* Set the playReady property: PlayReady configurations.
*
* @param playReady the playReady value to set.
* @return the CbcsDrmConfiguration object itself.
*/
public CbcsDrmConfiguration withPlayReady(StreamingPolicyPlayReadyConfiguration playReady) {
this.playReady = playReady;
return this;
}
/**
* Get the widevine property: Widevine configurations.
*
* @return the widevine value.
*/
public StreamingPolicyWidevineConfiguration widevine() {
return this.widevine;
}
/**
* Set the widevine property: Widevine configurations.
*
* @param widevine the widevine value to set.
* @return the CbcsDrmConfiguration object itself.
*/
public CbcsDrmConfiguration withWidevine(StreamingPolicyWidevineConfiguration widevine) {
this.widevine = widevine;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (fairPlay() != null) {
fairPlay().validate();
}
if (playReady() != null) {
playReady().validate();
}
if (widevine() != null) {
widevine().validate();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy