Initial version -- added millennium read funcionality
This commit is contained in:
+63
@@ -0,0 +1,63 @@
|
||||
package com.google.android.gms.common.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
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 class ConnectionTelemetryConfiguration extends AbstractSafeParcelable {
|
||||
public static final Parcelable.Creator<ConnectionTelemetryConfiguration> CREATOR = new zzm();
|
||||
private final RootTelemetryConfiguration zza;
|
||||
private final boolean zzb;
|
||||
private final boolean zzc;
|
||||
private final int[] zzd;
|
||||
private final int zze;
|
||||
private final int[] zzf;
|
||||
|
||||
public ConnectionTelemetryConfiguration(RootTelemetryConfiguration rootTelemetryConfiguration, boolean z, boolean z2, int[] iArr, int i, int[] iArr2) {
|
||||
this.zza = rootTelemetryConfiguration;
|
||||
this.zzb = z;
|
||||
this.zzc = z2;
|
||||
this.zzd = iArr;
|
||||
this.zze = i;
|
||||
this.zzf = iArr2;
|
||||
}
|
||||
|
||||
public int getMaxMethodInvocationsLogged() {
|
||||
return this.zze;
|
||||
}
|
||||
|
||||
public int[] getMethodInvocationMethodKeyAllowlist() {
|
||||
return this.zzd;
|
||||
}
|
||||
|
||||
public int[] getMethodInvocationMethodKeyDisallowlist() {
|
||||
return this.zzf;
|
||||
}
|
||||
|
||||
public boolean getMethodInvocationTelemetryEnabled() {
|
||||
return this.zzb;
|
||||
}
|
||||
|
||||
public boolean getMethodTimingTelemetryEnabled() {
|
||||
return this.zzc;
|
||||
}
|
||||
|
||||
@Override // android.os.Parcelable
|
||||
public final void writeToParcel(Parcel parcel, int i) {
|
||||
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||||
SafeParcelWriter.writeParcelable(parcel, 1, this.zza, i, false);
|
||||
SafeParcelWriter.writeBoolean(parcel, 2, getMethodInvocationTelemetryEnabled());
|
||||
SafeParcelWriter.writeBoolean(parcel, 3, getMethodTimingTelemetryEnabled());
|
||||
SafeParcelWriter.writeIntArray(parcel, 4, getMethodInvocationMethodKeyAllowlist(), false);
|
||||
SafeParcelWriter.writeInt(parcel, 5, getMaxMethodInvocationsLogged());
|
||||
SafeParcelWriter.writeIntArray(parcel, 6, getMethodInvocationMethodKeyDisallowlist(), false);
|
||||
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
||||
}
|
||||
|
||||
public final RootTelemetryConfiguration zza() {
|
||||
return this.zza;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user