summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/SessionKeyInfo.java
blob: 5e70a6f2a739744d095eb16d7cc33fd1c8f751ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.media;

import android.os.Parcel;
import android.os.Parcelable;
import org.mozilla.gecko.annotation.WrapForJNI;

public final class SessionKeyInfo implements Parcelable {
  @WrapForJNI public byte[] keyId;

  @WrapForJNI public int status;

  @WrapForJNI
  public SessionKeyInfo(final byte[] keyId, final int status) {
    this.keyId = keyId;
    this.status = status;
  }

  @Override
  public int describeContents() {
    return 0;
  }

  @Override
  public void writeToParcel(final Parcel dest, final int parcelableFlags) {
    dest.writeByteArray(keyId);
    dest.writeInt(status);
  }

  public static final Creator<SessionKeyInfo> CREATOR =
      new Creator<SessionKeyInfo>() {
        @Override
        public SessionKeyInfo createFromParcel(final Parcel in) {
          return new SessionKeyInfo(in);
        }

        @Override
        public SessionKeyInfo[] newArray(final int size) {
          return new SessionKeyInfo[size];
        }
      };

  private SessionKeyInfo(final Parcel src) {
    keyId = src.createByteArray();
    status = src.readInt();
  }
}