Tools release: 1.2.0
This commit is contained in:
@@ -10,6 +10,7 @@ java_library(
|
||||
name = "interfaces",
|
||||
srcs = glob(["*.java"]),
|
||||
deps = [
|
||||
"//google/chrome/widevine/contentpartners/v1beta1:device_security_profiles_java_proto",
|
||||
"//google/chrome/widevine/contentpartners/v1beta1:published_devices_java_proto",
|
||||
"@com_google_protobuf//:protobuf_java",
|
||||
"@apache_httpcore//:org_apache_httpcomponents_httpcore",
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
// Copyright 2020 Google LLC. All rights reserved.
|
||||
package com.google.video.widevine.jts.interfaces;
|
||||
|
||||
import com.google.chrome.widevine.contentpartners.v1beta1.SignedDeviceSecurityProfiles;
|
||||
|
||||
/** DeviceSecurityProfile defines APIs for getting Signed Device Security Profile list. */
|
||||
public interface DeviceSecurityProfile {
|
||||
|
||||
/**
|
||||
* Get the latest {@code SignedDeviceSecurityProfiles} containing Device Security Profile list
|
||||
* data.
|
||||
*
|
||||
* @return {@code SignedDeviceSecurityProfiles} containing Device Security Profile list data.
|
||||
*/
|
||||
public SignedDeviceSecurityProfiles getSignedDeviceSecurityProfiles() throws Exception;
|
||||
}
|
||||
Reference in New Issue
Block a user