87 lines
2.0 KiB
Java
87 lines
2.0 KiB
Java
/*
|
|
* 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;
|
|
|
|
import java.util.Objects;
|
|
|
|
/**
|
|
* @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 int hashCode() {
|
|
return Objects.hashCode(mId);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "SessionHandle [id=" + mId + "]";
|
|
}
|
|
}
|