public final class BioBuilder extends Object
| Modifier and Type | Field and Description |
|---|---|
static byte |
BODY_ODOR
Body Odor.
|
static byte |
DEFAULT_INITPARAM
The default value of the provider specific initialization information,
initParam parameter in the buildBioTemplate()
method. |
static byte |
DNA_SCAN
Pattern is a DNA sample for matching.
|
static byte |
EAR_GEOMETRY
Ear geometry ID is based on overall geometry/shape of the ear.
|
static byte |
FACIAL_FEATURE
Facial feature recognition (visage).
|
static byte |
FINGER_GEOMETRY
Finger geometry ID is based on overall geometry/shape of a finger.
|
static byte |
FINGERPRINT
Fingerprint identification (any finger).
|
static byte |
GAIT_STYLE
Gait (behavioral).
|
static byte |
HAND_GEOMETRY
Hand geometry ID is based on overall geometry/shape of the hand.
|
static byte |
IRIS_SCAN
Pattern is a scan of the eye's iris.
|
static byte |
KEYSTROKES
Keystrokes dynamics (behavioral).
|
static byte |
LIP_MOVEMENT
Lip movement (behavioral).
|
static byte |
PALM_GEOMETRY
Palm geometry ID is based on overall geometry/shape of a palm.
|
static byte |
PASSWORD
General password (a PIN is a special case of the password).
|
static byte |
RETINA_SCAN
Pattern is an infrared scan of the blood vessels of the retina of the
eye.
|
static byte |
SIGNATURE
Written signature dynamics ID (behavioral).
|
static byte |
THERMAL_FACE
Thermal Face Image.
|
static byte |
THERMAL_HAND
Thermal Hand Image.
|
static byte |
VEIN_PATTERN
Pattern is an infrared scan of the vein pattern in a face, wrist, or,
hand.
|
static byte |
VOICE_PRINT
Pattern is a voice sample (specific or unspecified speech).
|
| Modifier and Type | Method and Description |
|---|---|
static OwnerBioTemplate |
buildBioTemplate(byte bioType,
byte tryLimit)
Creates an empty/blank biometric reference template instance of the
default biometric provider with default initialization parameter.
|
static OwnerBioTemplate |
buildBioTemplate(byte bioType,
byte tryLimit,
byte[] RID,
byte initParam)
Creates an empty/blank biometric reference template.
|
public static final byte FACIAL_FEATURE
public static final byte VOICE_PRINT
public static final byte FINGERPRINT
public static final byte IRIS_SCAN
public static final byte RETINA_SCAN
public static final byte HAND_GEOMETRY
public static final byte SIGNATURE
public static final byte KEYSTROKES
public static final byte LIP_MOVEMENT
public static final byte THERMAL_FACE
public static final byte THERMAL_HAND
public static final byte GAIT_STYLE
public static final byte BODY_ODOR
public static final byte DNA_SCAN
public static final byte EAR_GEOMETRY
public static final byte FINGER_GEOMETRY
public static final byte PALM_GEOMETRY
public static final byte VEIN_PATTERN
public static final byte PASSWORD
public static final byte DEFAULT_INITPARAM
initParam parameter in the buildBioTemplate()
method.public static OwnerBioTemplate buildBioTemplate(byte bioType, byte tryLimit) throws BioException
bioType - the type of the template to be generated. Valid codes are
listed in the biometric pattern type constants.tryLimit - maximum unsuccessful matches before template is blocked.
tryLimit must be at least 1.OwnerBioTemplate object instance of the
requested bioType and tryLimit
access.BioException - with the following reason codes:
BioException.ILLEGAL_VALUE if
tryLimit parameter is less than 1.
BioException.NO_SUCH_BIO_TEMPLATE if the
requested template associated with the specified
bioType is not supported.
public static OwnerBioTemplate buildBioTemplate(byte bioType, byte tryLimit, byte[] RID, byte initParam) throws BioException
OwnerBioTemplate implementation.bioType - the type of the template to be generated. Valid codes are
listed in the biometric pattern type constants.tryLimit - maximum unsuccessful matches before template is blocked.
tryLimit must be at least 1.RID - the RID of the provider of OwnerBioTemplate
implementation. null value means default providerinitParam - the provider specific initialization information for the
OwnerBioTemplate instance.
DEFAULT_INITPARAM is default value.OwnerBioTemplate object instance of the
requested bioType and tryLimit
access.BioException - with the following reason codes:
BioException.ILLEGAL_VALUE if
tryLimit parameter is less than 1.
BioException.NO_SUCH_BIO_TEMPLATE if the
requested template associated with the specified
bioType is not supported.
Copyright © 1998, 2015, Oracle and/or its affiliates. All rights reserved.