DrmManagerClient
open classDrmManagerClient: AutoCloseable
| kotlin.Any | |
| ↳ | android.drm.DrmManagerClient |
The main programming interface for the DRM framework. An application must instantiate this class to access DRM agents through the DRM framework.
Summary
| Nested classes | |
|---|---|
| abstract |
Interface definition for a callback that receives information about DRM framework errors. |
| abstract |
Interface definition for a callback that receives information about DRM processing events. |
| abstract |
Interface definition for a callback that receives status messages and warnings during registration and rights acquisition. |
| Constants | |
|---|---|
| static Int |
Indicates that a request was successful or that no error occurred. |
| static Int |
Indicates that an error occurred and the reason is not known. |
| Public constructors | |
|---|---|
DrmManagerClient(context: Context!)Creates a |
|
| Public methods | |
|---|---|
| open DrmInfo! |
acquireDrmInfo(drmInfoRequest: DrmInfoRequest!)Retrieves information for registering, unregistering, or acquiring rights. |
| open Int |
acquireRights(drmInfoRequest: DrmInfoRequest!)Processes a given |
| open Boolean |
Checks whether the given MIME type or URI can be handled. |
| open Boolean |
Checks whether the given MIME type or path can be handled. |
| open Int |
checkRightsStatus(uri: Uri!)Check whether the given content has valid rights. |
| open Int |
checkRightsStatus(uri: Uri!, action: Int)Checks whether the given rights-protected content has valid rights for the specified |
| open Int |
checkRightsStatus(path: String!)Checks whether the given content has valid rights. |
| open Int |
checkRightsStatus(path: String!, action: Int)Checks whether the given rights-protected content has valid rights for the specified |
| open Unit |
close()Releases resources associated with the current session of DrmManagerClient. |
| open DrmConvertedStatus! |
closeConvertSession(convertId: Int)Informs the DRM plug-in (agent) that there is no more data to convert or that an error has occurred. |
| open DrmConvertedStatus! |
convertData(convertId: Int, inputData: ByteArray!)Converts the input data (content) that is part of a rights-protected file. |
| open Array<String!>! |
Retrieves information about all the DRM plug-ins (agents) that are registered with the DRM framework. |
| open MutableCollection<DrmSupportInfo!> |
Retrieves information about all the DRM plug-ins (agents) that are registered with the DRM framework. |
| open ContentValues! |
getConstraints(uri: Uri!, action: Int)Retrieves constraint information for rights-protected content. |
| open ContentValues! |
getConstraints(path: String!, action: Int)Retrieves constraint information for rights-protected content. |
| open Int |
getDrmObjectType(uri: Uri!, mimeType: String!)Retrieves the type of rights-protected object (for example, content object, rights object, and so on) using the specified URI or MIME type. |
| open Int |
getDrmObjectType(path: String!, mimeType: String!)Retrieves the type of rights-protected object (for example, content object, rights object, and so on) using the specified path or MIME type. |
| open ContentValues! |
getMetadata(uri: Uri!)Retrieves metadata information for rights-protected content. |
| open ContentValues! |
getMetadata(path: String!)Retrieves metadata information for rights-protected content. |
| open String! |
getOriginalMimeType(uri: Uri!)Retrieves the MIME type embedded in the original content. |
| open String! |
getOriginalMimeType(path: String!)Retrieves the MIME type embedded in the original content. |
| open Int |
openConvertSession(mimeType: String!)Initiates a new conversion session. |
| open Int |
processDrmInfo(drmInfo: DrmInfo!)Processes the given DRM information based on the information type. |
| open Unit |
release() |
| open Int |
Removes all the rights information of every DRM plug-in (agent) associated with the DRM framework. |
| open Int |
removeRights(uri: Uri!)Removes the rights associated with the given rights-protected content. |
| open Int |
removeRights(path: String!)Removes the rights associated with the given rights-protected content. |
| open Int |
saveRights(drmRights: DrmRights!, rightsPath: String!, contentPath: String!)Saves rights to a specified path and associates that path with the content path. |
| open Unit |
setOnErrorListener(errorListener: DrmManagerClient.OnErrorListener!)Registers an |
| open Unit |
setOnEventListener(eventListener: DrmManagerClient.OnEventListener!)Registers an |
| open Unit |
setOnInfoListener(infoListener: DrmManagerClient.OnInfoListener!)Registers an |
| Protected methods | |
|---|---|
| open Unit |
finalize()Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. |
Constants
ERROR_NONE
static valERROR_NONE: Int
Deprecated: Deprecated in Java.
Indicates that a request was successful or that no error occurred.
Value: 0ERROR_UNKNOWN
static valERROR_UNKNOWN: Int
Deprecated: Deprecated in Java.
Indicates that an error occurred and the reason is not known.
Value: -2000Public constructors
DrmManagerClient
DrmManagerClient(context: Context!)
Creates a DrmManagerClient.
| Parameters | |
|---|---|
context |
Context!: Context of the caller. |
Public methods
acquireDrmInfo
open funacquireDrmInfo(drmInfoRequest: DrmInfoRequest!): DrmInfo!
Deprecated: Deprecated in Java.
Retrieves information for registering, unregistering, or acquiring rights.
| Parameters | |
|---|---|
drmInfoRequest |
DrmInfoRequest!: The DrmInfoRequest that specifies the type of DRM information being retrieved. |
| Return | |
|---|---|
DrmInfo! |
A DrmInfo instance. |
acquireRights
open funacquireRights(drmInfoRequest: DrmInfoRequest!): Int
Deprecated: Deprecated in Java.
Processes a given DrmInfoRequest and returns the rights information asynchronously.
This is a utility method that consists of an acquireDrmInfo() and a processDrmInfo() method call. This utility method can be used only if the selected DRM plug-in (agent) supports this sequence of calls. Some DRM agents, such as OMA, do not support this utility method, in which case an application must invoke acquireDrmInfo() and processDrmInfo() separately.
| Parameters | |
|---|---|
drmInfoRequest |
DrmInfoRequest!: The DrmInfoRequest used to acquire the rights. |
| Return | |
|---|---|
Int |
ERROR_NONE for success; ERROR_UNKNOWN for failure. |
canHandle
open funcanHandle(
uri: Uri!,
mimeType: String!
): Boolean
Deprecated: Deprecated in Java.
Checks whether the given MIME type or URI can be handled.
| Parameters | |
|---|---|
uri |
Uri!: URI for the content to be handled. |
mimeType |
String!: MIME type of the object to be handled |
| Return | |
|---|---|
Boolean |
True if the given MIME type or URI can be handled; false if they cannot be handled. |
canHandle
open funcanHandle(
path: String!,
mimeType: String!
): Boolean
Deprecated: Deprecated in Java.
Checks whether the given MIME type or path can be handled.
| Parameters | |
|---|---|
path |
String!: Path of the content to be handled. |
mimeType |
String!: MIME type of the object to be handled. |
| Return | |
|---|---|
Boolean |
True if the given MIME type or path can be handled; false if they cannot be handled. |
checkRightsStatus
open funcheckRightsStatus(uri: Uri!): Int
Deprecated: Deprecated in Java.
Check whether the given content has valid rights.
| Parameters | |
|---|---|
uri |
Uri!: URI of the rights-protected content. |
| Return | |
|---|---|
Int |
An int representing the DrmStore.RightsStatus of the content. |
checkRightsStatus
open funcheckRightsStatus(
uri: Uri!,
action: Int
): Int
Deprecated: Deprecated in Java.
Checks whether the given rights-protected content has valid rights for the specified DrmStore.Action.
| Parameters | |
|---|---|
uri |
Uri!: URI for the rights-protected content. |
action |
Int: The DrmStore.Action to perform. |
| Return | |
|---|---|
Int |
An int representing the DrmStore.RightsStatus of the content. |
checkRightsStatus
open funcheckRightsStatus(path: String!): Int
Deprecated: Deprecated in Java.
Checks whether the given content has valid rights.
| Parameters | |
|---|---|
path |
String!: Path to the rights-protected content. |
| Return | |
|---|---|
Int |
An int representing the DrmStore.RightsStatus of the content. |
checkRightsStatus
open funcheckRightsStatus(
path: String!,
action: Int
): Int
Deprecated: Deprecated in Java.
Checks whether the given rights-protected content has valid rights for the specified DrmStore.Action.
| Parameters | |
|---|---|
path |
String!: Path to the rights-protected content. |
action |
Int: The DrmStore.Action to perform. |
| Return | |
|---|---|
Int |
An int representing the DrmStore.RightsStatus of the content. |
close
open funclose(): Unit
Deprecated: Deprecated in Java.
Releases resources associated with the current session of DrmManagerClient. It is considered good practice to call this method when the DrmManagerClient object is no longer needed in your application. After this method is called, DrmManagerClient is no longer usable since it has lost all of its required resource. This method was added in API 24. In API versions 16 through 23, release() should be called instead. There is no need to do anything for API versions prior to 16.
| Exceptions | |
|---|---|
java.lang.Exception |
if this resource cannot be closed |
closeConvertSession
open funcloseConvertSession(convertId: Int): DrmConvertedStatus!
Deprecated: Deprecated in Java.
Informs the DRM plug-in (agent) that there is no more data to convert or that an error has occurred. Upon successful conversion of the data, the DRM agent will provide an offset value indicating where the header and body signature should be added. Appending the signature is necessary to protect the integrity of the converted file.
| Parameters | |
|---|---|
convertId |
Int: Handle for the conversion session. |
| Return | |
|---|---|
DrmConvertedStatus! |
A DrmConvertedStatus object that contains the status of the data conversion, the converted data, and the offset for the header and body signature. |
convertData
open funconvertData(
convertId: Int,
inputData: ByteArray!
): DrmConvertedStatus!
Deprecated: Deprecated in Java.
Converts the input data (content) that is part of a rights-protected file. The converted data and status is returned in a DrmConvertedStatus object. This method should be called each time there is a new block of data received by the application.
| Parameters | |
|---|---|
convertId |
Int: Handle for the conversion session. |
inputData |
ByteArray!: Input data that needs to be converted. |
| Return | |
|---|---|
DrmConvertedStatus! |
A DrmConvertedStatus object that contains the status of the data conversion, the converted data, and offset for the header and body signature. An application can ignore the offset because it is only relevant to the closeConvertSession() method. |
getAvailableDrmEngines
open fungetAvailableDrmEngines(): Array<String!>!
Deprecated: Deprecated in Java.
Retrieves information about all the DRM plug-ins (agents) that are registered with the DRM framework.
| Return | |
|---|---|
Array<String!>! |
A String array of DRM plug-in descriptions. |
getAvailableDrmSupportInfo
open fungetAvailableDrmSupportInfo(): MutableCollection<DrmSupportInfo!>
Deprecated: Deprecated in Java.
Retrieves information about all the DRM plug-ins (agents) that are registered with the DRM framework.
| Return | |
|---|---|
MutableCollection<DrmSupportInfo!> |
List of all the DRM plug-ins (agents) that are registered with the DRM framework. This value cannot be null. |
getConstraints
open fungetConstraints(
uri: Uri!,
action: Int
): ContentValues!
Deprecated: Deprecated in Java.
Retrieves constraint information for rights-protected content.
| Parameters | |
|---|---|
uri |
Uri!: URI for the content from which you are retrieving DRM constraints. |
action |
Int: Action defined in DrmStore.Action. |
| Return | |
|---|---|
ContentValues! |
A android.content.ContentValues instance that contains key-value pairs representing the constraints. Null in case of failure. |
getConstraints
open fungetConstraints(
path: String!,
action: Int
): ContentValues!
Deprecated: Deprecated in Java.
Retrieves constraint information for rights-protected content.
| Parameters | |
|---|---|
path |
String!: Path to the content from which you are retrieving DRM constraints. |
action |
Int: Action defined in DrmStore.Action. |
| Return | |
|---|---|
ContentValues! |
A android.content.ContentValues instance that contains key-value pairs representing the constraints. Null in case of failure. The keys are defined in DrmStore.ConstraintsColumns. |
getDrmObjectType
open fungetDrmObjectType(
uri: Uri!,
mimeType: String!
): Int
Deprecated: Deprecated in Java.
Retrieves the type of rights-protected object (for example, content object, rights object, and so on) using the specified URI or MIME type. At least one parameter must be specified to retrieve the DRM object type.
| Parameters | |
|---|---|
uri |
Uri!: URI for the content or null. |
mimeType |
String!: MIME type of the content or null. |
| Return | |
|---|---|
Int |
An int that corresponds to a DrmStore.DrmObjectType. |
getDrmObjectType
open fungetDrmObjectType(
path: String!,
mimeType: String!
): Int
Deprecated: Deprecated in Java.
Retrieves the type of rights-protected object (for example, content object, rights object, and so on) using the specified path or MIME type. At least one parameter must be specified to retrieve the DRM object type.
| Parameters | |
|---|---|
path |
String!: Path to the content or null. |
mimeType |
String!: MIME type of the content or null. |
| Return | |
|---|---|
Int |
An int that corresponds to a DrmStore.DrmObjectType. |
getMetadata
open fungetMetadata(uri: Uri!): ContentValues!
Deprecated: Deprecated in Java.
Retrieves metadata information for rights-protected content.
| Parameters | |
|---|---|
uri |
Uri!: URI for the content from which you are retrieving metadata information. |
| Return | |
|---|---|
ContentValues! |
A android.content.ContentValues instance that contains key-value pairs representing the constraints. Null in case of failure. |
getMetadata
open fungetMetadata(path: String!): ContentValues!
Deprecated: Deprecated in Java.
Retrieves metadata information for rights-protected content.
| Parameters | |
|---|---|
path |
String!: Path to the content from which you are retrieving metadata information. |
| Return | |
|---|---|
ContentValues! |
A android.content.ContentValues instance that contains key-value pairs representing the metadata. Null in case of failure. |
getOriginalMimeType
open fungetOriginalMimeType(uri: Uri!): String!
Deprecated: Deprecated in Java.
Retrieves the MIME type embedded in the original content.
| Parameters | |
|---|---|
uri |
Uri!: URI of the rights-protected content. |
| Return | |
|---|---|
String! |
MIME type of the original content, such as video/mpeg. |
getOriginalMimeType
open fungetOriginalMimeType(path: String!): String!
Deprecated: Deprecated in Java.
Retrieves the MIME type embedded in the original content.
| Parameters | |
|---|---|
path |
String!: Path to the rights-protected content. |
| Return | |
|---|---|
String! |
The MIME type of the original content, such as video/mpeg. |
openConvertSession
open funopenConvertSession(mimeType: String!): Int
Deprecated: Deprecated in Java.
Initiates a new conversion session. An application must initiate a conversion session with this method each time it downloads a rights-protected file that needs to be converted.
This method applies only to forward-locking (copy protection) DRM schemes.
| Parameters | |
|---|---|
mimeType |
String!: MIME type of the input data packet. |
| Return | |
|---|---|
Int |
A convert ID that is used used to maintain the conversion session. |
processDrmInfo
open funprocessDrmInfo(drmInfo: DrmInfo!): Int
Deprecated: Deprecated in Java.
Processes the given DRM information based on the information type.
| Parameters | |
|---|---|
drmInfo |
DrmInfo!: The DrmInfo to be processed. |
| Return | |
|---|---|
Int |
ERROR_NONE for success; ERROR_UNKNOWN for failure. |
removeAllRights
open funremoveAllRights(): Int
Deprecated: Deprecated in Java.
Removes all the rights information of every DRM plug-in (agent) associated with the DRM framework.
| Return | |
|---|---|
Int |
ERROR_NONE for success; ERROR_UNKNOWN for failure. |
removeRights
open funremoveRights(uri: Uri!): Int
Deprecated: Deprecated in Java.
Removes the rights associated with the given rights-protected content.
| Parameters | |
|---|---|
uri |
Uri!: URI for the rights-protected content. |
| Return | |
|---|---|
Int |
ERROR_NONE for success; ERROR_UNKNOWN for failure. |
removeRights
open funremoveRights(path: String!): Int
Deprecated: Deprecated in Java.
Removes the rights associated with the given rights-protected content.
| Parameters | |
|---|---|
path |
String!: Path to the rights-protected content. |
| Return | |
|---|---|
Int |
ERROR_NONE for success; ERROR_UNKNOWN for failure. |
saveRights
open funsaveRights(
drmRights: DrmRights!,
rightsPath: String!,
contentPath: String!
): Int
Deprecated: Deprecated in Java.
Saves rights to a specified path and associates that path with the content path.
Note: For OMA or WM-DRM, rightsPath and contentPath can be null.
| Parameters | |
|---|---|
drmRights |
DrmRights!: The DrmRights to be saved. |
rightsPath |
String!: File path where rights will be saved. |
contentPath |
String!: File path where content is saved. |
| Return | |
|---|---|
Int |
ERROR_NONE for success; ERROR_UNKNOWN for failure. |
| Exceptions | |
|---|---|
java.io.IOException |
If the call failed to save rights information at the given rightsPath. |
setOnErrorListener
open funsetOnErrorListener(errorListener: DrmManagerClient.OnErrorListener!): Unit
Deprecated: Deprecated in Java.
Registers an DrmManagerClient.OnErrorListener callback, which is invoked when the DRM framework sends error information.
| Parameters | |
|---|---|
errorListener |
DrmManagerClient.OnErrorListener!: Interface definition for the callback. |
setOnEventListener
open funsetOnEventListener(eventListener: DrmManagerClient.OnEventListener!): Unit
Deprecated: Deprecated in Java.
Registers an DrmManagerClient.OnEventListener callback, which is invoked when the DRM framework sends information about DRM processing.
| Parameters | |
|---|---|
eventListener |
DrmManagerClient.OnEventListener!: Interface definition for the callback. |
setOnInfoListener
open funsetOnInfoListener(infoListener: DrmManagerClient.OnInfoListener!): Unit
Deprecated: Deprecated in Java.
Registers an DrmManagerClient.OnInfoListener callback, which is invoked when the DRM framework sends status or warning information during registration or rights acquisition.
| Parameters | |
|---|---|
infoListener |
DrmManagerClient.OnInfoListener!: Interface definition for the callback. |
Protected methods
finalize
protected open funfinalize(): Unit
Deprecated: Deprecated in Java.
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. A subclass overrides the finalize method to dispose of system resources or to perform other cleanup.
The general contract of finalize is that it is invoked if and when the Java virtual machine has determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, except as a result of an action taken by the finalization of some other object or class which is ready to be finalized. The finalize method may take any action, including making this object available again to other threads; the usual purpose of finalize, however, is to perform cleanup actions before the object is irrevocably discarded. For example, the finalize method for an object that represents an input/output connection might perform explicit I/O transactions to break the connection before the object is permanently discarded.
The finalize method of class Object performs no special action; it simply returns normally. Subclasses of Object may override this definition.
The Java programming language does not guarantee which thread will invoke the finalize method for any given object. It is guaranteed, however, that the thread that invokes finalize will not be holding any user-visible synchronization locks when finalize is invoked. If an uncaught exception is thrown by the finalize method, the exception is ignored and finalization of that object terminates.
After the finalize method has been invoked for an object, no further action is taken until the Java virtual machine has again determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, including possible actions by other objects or classes which are ready to be finalized, at which point the object may be discarded.
The finalize method is never invoked more than once by a Java virtual machine for any given object.
Any exception thrown by the finalize method causes the finalization of this object to be halted, but is otherwise ignored.
| Exceptions | |
|---|---|
java.lang.Throwable |
the Exception raised by this method |