21 lines
693 B
Java
21 lines
693 B
Java
|
package com.huawei.hms.support.feature.request;
|
||
|
|
||
|
import com.huawei.hms.support.api.entity.auth.PermissionInfo;
|
||
|
import com.huawei.hms.support.api.entity.auth.Scope;
|
||
|
import java.util.HashSet;
|
||
|
import java.util.Set;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public abstract class AbstractAuthParamsHelper {
|
||
|
public Set<Scope> signInScopes = new HashSet();
|
||
|
public Set<PermissionInfo> permissionSet = new HashSet();
|
||
|
|
||
|
public AbstractAuthParamsHelper() {
|
||
|
}
|
||
|
|
||
|
public AbstractAuthParamsHelper(AbstractAuthParams abstractAuthParams) {
|
||
|
this.signInScopes.addAll(abstractAuthParams.getRequestScopeList());
|
||
|
this.permissionSet.addAll(abstractAuthParams.getPermissionInfos());
|
||
|
}
|
||
|
}
|