summaryrefslogtreecommitdiffstats
path: root/mobile/android/base/java/org/mozilla/gecko/media/SessionKeyInfo.java
blob: b41ef36253438324308c91c8f9480cfcf2175ff0 (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
51
/* 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(byte[] keyId, int status) {
        this.keyId = keyId;
        this.status = status;
    }

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

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

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

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

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