111 lines
4.2 KiB
Java
111 lines
4.2 KiB
Java
![]() |
/*
|
||
|
* Copyright (C) 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.hardware.biometrics;
|
||
|
|
||
|
import android.annotation.NonNull;
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* The base class containing all modality-agnostic information. This is a superset of the
|
||
|
* {@link android.hardware.biometrics.common.CommonProps}, and provides backwards-compatible
|
||
|
* behavior with the older generation of HIDL (non-AIDL) interfaces.
|
||
|
* @hide
|
||
|
*/
|
||
|
public class SensorPropertiesInternal implements Parcelable {
|
||
|
|
||
|
public final int sensorId;
|
||
|
@SensorProperties.Strength public final int sensorStrength;
|
||
|
public final int maxEnrollmentsPerUser;
|
||
|
@NonNull public final List<ComponentInfoInternal> componentInfo;
|
||
|
public final boolean resetLockoutRequiresHardwareAuthToken;
|
||
|
public final boolean resetLockoutRequiresChallenge;
|
||
|
|
||
|
public static SensorPropertiesInternal from(@NonNull SensorPropertiesInternal prop) {
|
||
|
return new SensorPropertiesInternal(prop.sensorId, prop.sensorStrength,
|
||
|
prop.maxEnrollmentsPerUser, prop.componentInfo,
|
||
|
prop.resetLockoutRequiresHardwareAuthToken, prop.resetLockoutRequiresChallenge);
|
||
|
}
|
||
|
|
||
|
public SensorPropertiesInternal(int sensorId, @SensorProperties.Strength int sensorStrength,
|
||
|
int maxEnrollmentsPerUser, @NonNull List<ComponentInfoInternal> componentInfo,
|
||
|
boolean resetLockoutRequiresHardwareAuthToken, boolean resetLockoutRequiresChallenge) {
|
||
|
this.sensorId = sensorId;
|
||
|
this.sensorStrength = sensorStrength;
|
||
|
this.maxEnrollmentsPerUser = maxEnrollmentsPerUser;
|
||
|
this.componentInfo = componentInfo;
|
||
|
this.resetLockoutRequiresHardwareAuthToken = resetLockoutRequiresHardwareAuthToken;
|
||
|
this.resetLockoutRequiresChallenge = resetLockoutRequiresChallenge;
|
||
|
}
|
||
|
|
||
|
protected SensorPropertiesInternal(Parcel in) {
|
||
|
sensorId = in.readInt();
|
||
|
sensorStrength = in.readInt();
|
||
|
maxEnrollmentsPerUser = in.readInt();
|
||
|
componentInfo = new ArrayList<>();
|
||
|
in.readList(componentInfo, ComponentInfoInternal.class.getClassLoader(), android.hardware.biometrics.ComponentInfoInternal.class);
|
||
|
resetLockoutRequiresHardwareAuthToken = in.readBoolean();
|
||
|
resetLockoutRequiresChallenge = in.readBoolean();
|
||
|
}
|
||
|
|
||
|
public static final Creator<SensorPropertiesInternal> CREATOR =
|
||
|
new Creator<SensorPropertiesInternal>() {
|
||
|
@Override
|
||
|
public SensorPropertiesInternal createFromParcel(Parcel in) {
|
||
|
return new SensorPropertiesInternal(in);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public SensorPropertiesInternal[] newArray(int size) {
|
||
|
return new SensorPropertiesInternal[size];
|
||
|
}
|
||
|
};
|
||
|
|
||
|
@Override
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void writeToParcel(Parcel dest, int flags) {
|
||
|
dest.writeInt(sensorId);
|
||
|
dest.writeInt(sensorStrength);
|
||
|
dest.writeInt(maxEnrollmentsPerUser);
|
||
|
dest.writeList(componentInfo);
|
||
|
dest.writeBoolean(resetLockoutRequiresHardwareAuthToken);
|
||
|
dest.writeBoolean(resetLockoutRequiresChallenge);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
final StringBuilder sb = new StringBuilder();
|
||
|
sb.append("[ ");
|
||
|
for (ComponentInfoInternal info : componentInfo) {
|
||
|
sb.append("[").append(info.toString());
|
||
|
sb.append("] ");
|
||
|
}
|
||
|
sb.append("]");
|
||
|
|
||
|
return "ID: " + sensorId + ", Strength: " + sensorStrength
|
||
|
+ ", MaxEnrollmentsPerUser: " + maxEnrollmentsPerUser
|
||
|
+ ", ComponentInfo: " + sb.toString();
|
||
|
}
|
||
|
}
|