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;
|
|
|
|
/* loaded from: classes.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;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public Scope(int i, String str) {
|
|
Preconditions.checkNotEmpty(str, "scopeUri must not be null or empty");
|
|
this.zza = i;
|
|
this.zzb = str;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj instanceof Scope) {
|
|
return this.zzb.equals(((Scope) obj).zzb);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.zzb.hashCode();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
|
SafeParcelWriter.writeInt(parcel, 1, this.zza);
|
|
SafeParcelWriter.writeString(parcel, 2, getScopeUri(), false);
|
|
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
|
|
}
|
|
|
|
public Scope(String str) {
|
|
this(1, str);
|
|
}
|
|
|
|
public final String toString() {
|
|
return this.zzb;
|
|
}
|
|
|
|
public final String getScopeUri() {
|
|
return this.zzb;
|
|
}
|
|
}
|