Tweak DefaultDrmSessionManager Mode Javadoc

PiperOrigin-RevId: 324557397
This commit is contained in:
olly 2020-08-03 09:02:31 +01:00 committed by kim-vde
parent 132cff1e47
commit a04769f2d5

View File

@ -415,14 +415,14 @@ public class DefaultDrmSessionManager implements DrmSessionManager {
* <p>{@code mode} must be one of these: * <p>{@code mode} must be one of these:
* *
* <ul> * <ul>
* <li>{@link #MODE_PLAYBACK}: If {@code offlineLicenseKeySetId} is null, a streaming license is * <li>{@link #MODE_PLAYBACK}: If {@code offlineLicenseKeySetId} is null then a streaming
* requested otherwise the offline license is restored. * license is requested. Otherwise, the offline license is restored.
* <li>{@link #MODE_QUERY}: {@code offlineLicenseKeySetId} can not be null. The offline license * <li>{@link #MODE_QUERY}: {@code offlineLicenseKeySetId} cannot be null. The offline license
* is restored. * is restored to allow its status to be queried.
* <li>{@link #MODE_DOWNLOAD}: If {@code offlineLicenseKeySetId} is null, an offline license is * <li>{@link #MODE_DOWNLOAD}: If {@code offlineLicenseKeySetId} is null then an offline license
* requested otherwise the offline license is renewed. * is requested. Otherwise, the offline license is renewed.
* <li>{@link #MODE_RELEASE}: {@code offlineLicenseKeySetId} can not be null. The offline * <li>{@link #MODE_RELEASE}: {@code offlineLicenseKeySetId} cannot be null. The offline license
* license is released. * is released.
* </ul> * </ul>
* *
* @param mode The mode to be set. * @param mode The mode to be set.