diff options
Diffstat (limited to 'core/java/android/uwb/SessionHandle.java')
| -rw-r--r-- | core/java/android/uwb/SessionHandle.java | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/core/java/android/uwb/SessionHandle.java b/core/java/android/uwb/SessionHandle.java new file mode 100644 index 000000000000..928fcbdcf1c7 --- /dev/null +++ b/core/java/android/uwb/SessionHandle.java @@ -0,0 +1,79 @@ +/* + * Copyright 2020 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.uwb; + +import android.os.Parcel; +import android.os.Parcelable; + +/** + * @hide + */ +public final class SessionHandle implements Parcelable { + private final int mId; + + public SessionHandle(int id) { + mId = id; + } + + protected SessionHandle(Parcel in) { + mId = in.readInt(); + } + + public static final Creator<SessionHandle> CREATOR = new Creator<SessionHandle>() { + @Override + public SessionHandle createFromParcel(Parcel in) { + return new SessionHandle(in); + } + + @Override + public SessionHandle[] newArray(int size) { + return new SessionHandle[size]; + } + }; + + public int getId() { + return mId; + } + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel dest, int flags) { + dest.writeInt(mId); + } + + @Override + public boolean equals(Object obj) { + if (this == obj) { + return true; + } + + if (obj instanceof SessionHandle) { + SessionHandle other = (SessionHandle) obj; + return mId == other.mId; + } + return false; + } + + @Override + public String toString() { + return "SessionHandle [id=" + mId + "]"; + } +} |
