Published Devices Client tool release: 1.1.0

This commit is contained in:
Buildbot
2020-10-06 00:51:14 +00:00
parent 62f0340b4e
commit e2bc2061f8
13 changed files with 1022 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// Copyright 2019 Google LLC. All rights reserved.
package com.google.video.widevine.jts.interfaces;
import com.google.chrome.widevine.contentpartners.v1beta1.PublishedDevices;
/**
* DeviceCertificate defines APIs for getting PublishedDevices and Published Devices list.
*/
public interface DeviceCertificate {
/**
* Get the latest {@code PublishedDevices} containing Published Devices list data.
*
* @return {@code PublishedDevices} containing Published Devices list data.
*/
public PublishedDevices getPublishedDevices() throws Exception;
}