Package com.appliedrec.verid.ui2
Interface IVerIDSession<T extends VerIDSessionInViewDelegate>
-
- All Known Implementing Classes:
VerIDSession
,VerIDSessionInView
public interface IVerIDSession<T extends VerIDSessionInViewDelegate>
Ver-ID session interface- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<T>
getDelegate()
long
getSessionIdentifier()
VerIDSessionSettings
getSettings()
VerID
getVerID()
void
setDelegate(T delegate)
Set session delegatevoid
start()
Start the session
-
-
-
Method Detail
-
getSessionIdentifier
long getSessionIdentifier()
- Returns:
- Unique identifier for the session
- Since:
- 2.0.0
-
start
void start()
Start the session- Since:
- 2.0.0
-
getDelegate
java.util.Optional<T> getDelegate()
- Returns:
- Session delegate
- Since:
- 2.0.0
-
setDelegate
void setDelegate(T delegate)
Set session delegate- Parameters:
delegate
- Session delegate- Since:
- 2.0.0
-
getVerID
VerID getVerID()
- Returns:
- Instance of
VerID
the session uses for face detection and recognition - Since:
- 2.0.0
-
getSettings
VerIDSessionSettings getSettings()
- Returns:
- Session settings
- Since:
- 2.0.0
-
-