DrmErrorEvent


public class DrmErrorEvent
extends DrmEvent

java.lang.Object
   ↳ android.drm.DrmEvent
     ↳ android.drm.DrmErrorEvent


This class was deprecated in API level 30.
Please use MediaDrm

An entity class that is passed to the onError() callback.

Summary

Constants

int TYPE_ACQUIRE_DRM_INFO_FAILED

Failed to acquire DrmInfo.

int TYPE_NOT_SUPPORTED

Response from the server cannot be handled by the DRM plug-in (agent).

int TYPE_NO_INTERNET_CONNECTION

An Internet connection is not available and no attempt can be made to renew rights.

int TYPE_OUT_OF_MEMORY

Memory allocation failed during renewal.

int TYPE_PROCESS_DRM_INFO_FAILED

Failed to process DrmInfo.

int TYPE_REMOVE_ALL_RIGHTS_FAILED

Failed to remove all the rights objects associated with all DRM schemes.

int TYPE_RIGHTS_NOT_INSTALLED

Something went wrong installing the rights.

int TYPE_RIGHTS_RENEWAL_NOT_ALLOWED

The server rejected the renewal of rights.

Inherited constants

String DRM_INFO_OBJECT

The key that is used in the attributes HashMap to pass the DrmInfo object.

String DRM_INFO_STATUS_OBJECT

The key that is used in the attributes HashMap to pass the return status.

int TYPE_ALL_RIGHTS_REMOVED

All of the rights information associated with all DRM schemes have been successfully removed.

int TYPE_DRM_INFO_PROCESSED

The given DRM information has been successfully processed.

Public constructors

DrmErrorEvent(int uniqueId, int type, String message)

Creates a DrmErrorEvent object with the specified parameters.

DrmErrorEvent(int uniqueId, int type, String message, HashMap<StringObject> attributes)

Creates a DrmErrorEvent object with the specified parameters.

Inherited methods

Object getAttribute(String key)

Retrieves the attribute associated with the specified key.

String getMessage()

Retrieves the message description associated with this object.

int getType()

Retrieves the type of information that is associated with this object.

int getUniqueId()

Retrieves the unique session identifier associated with this object.

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Constants

TYPE_ACQUIRE_DRM_INFO_FAILED

Added in API level 12
Deprecated in API level 30
public static final int TYPE_ACQUIRE_DRM_INFO_FAILED

Failed to acquire DrmInfo. This error event is sent when an acquireDrmInfo() call fails.

Constant Value: 2008 (0x000007d8)

TYPE_NOT_SUPPORTED

Added in API level 11
public static final int TYPE_NOT_SUPPORTED

Response from the server cannot be handled by the DRM plug-in (agent).

Constant Value: 2003 (0x000007d3)

TYPE_NO_INTERNET_CONNECTION

Added in API level 11
public static final int TYPE_NO_INTERNET_CONNECTION

An Internet connection is not available and no attempt can be made to renew rights.

Constant Value: 2005 (0x000007d5)

TYPE_OUT_OF_MEMORY

Added in API level 11
public static final int TYPE_OUT_OF_MEMORY

Memory allocation failed during renewal. Can in the future perhaps be used to trigger garbage collector.

Constant Value: 2004 (0x000007d4)

TYPE_PROCESS_DRM_INFO_FAILED

Added in API level 11
public static final int TYPE_PROCESS_DRM_INFO_FAILED

Failed to process DrmInfo. This error event is sent when a processDrmInfo() call fails.

Constant Value: 2006 (0x000007d6)

TYPE_REMOVE_ALL_RIGHTS_FAILED

Added in API level 11
public static final int TYPE_REMOVE_ALL_RIGHTS_FAILED

Failed to remove all the rights objects associated with all DRM schemes.

Constant Value: 2007 (0x000007d7)

TYPE_RIGHTS_NOT_INSTALLED

Added in API level 11
public static final int TYPE_RIGHTS_NOT_INSTALLED

Something went wrong installing the rights.

Constant Value: 2001 (0x000007d1)

TYPE_RIGHTS_RENEWAL_NOT_ALLOWED

Added in API level 11
public static final int TYPE_RIGHTS_RENEWAL_NOT_ALLOWED

The server rejected the renewal of rights.

Constant Value: 2002 (0x000007d2)

Public constructors

DrmErrorEvent

Added in API level 11
public DrmErrorEvent (int uniqueId, 
                int type, 
                String message)

Creates a DrmErrorEvent object with the specified parameters.

Parameters
uniqueId int: Unique session identifier.

type int: Type of the event. Must be any of the event types defined above.

message String: Message description. It can be null.

DrmErrorEvent

Added in API level 12
public DrmErrorEvent (int uniqueId, 
                int type, 
                String message, 
                HashMap<StringObject> attributes)

Creates a DrmErrorEvent object with the specified parameters.

Parameters
uniqueId int: Unique session identifier.

type int: Type of the event. Must be any of the event types defined above.

message String: Message description.

attributes HashMap: Attributes for extensible information. Could be any information provided by the plug-in. It can be null.