57 lines
1.7 KiB
Java
57 lines
1.7 KiB
Java
package com.google.android.gms.common.api;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.gms.common.internal.Preconditions;
|
|
import com.google.android.gms.common.internal.ReflectedParcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class Scope extends AbstractSafeParcelable implements ReflectedParcelable {
|
|
public static final Parcelable.Creator<Scope> CREATOR = new zza();
|
|
final int zza;
|
|
private final String zzb;
|
|
|
|
Scope(int i, String str) {
|
|
Preconditions.checkNotEmpty(str, "scopeUri must not be null or empty");
|
|
this.zza = i;
|
|
this.zzb = str;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj instanceof Scope) {
|
|
return this.zzb.equals(((Scope) obj).zzb);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public String getScopeUri() {
|
|
return this.zzb;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.zzb.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return this.zzb;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
int i2 = this.zza;
|
|
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
|
SafeParcelWriter.writeInt(parcel, 1, i2);
|
|
SafeParcelWriter.writeString(parcel, 2, getScopeUri(), false);
|
|
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
|
}
|
|
|
|
public Scope(String str) {
|
|
this(1, str);
|
|
}
|
|
} |