authenticateVisitor method
Implementation
@override
authenticateVisitor(String pVisitorId) {
if (visitor.config.decisionMode == Mode.DECISION_API) {
if (visitor.anonymousId == null) {
visitor.anonymousId = visitor.visitorId;
visitor.visitorId = pVisitorId;
}
} else {
Flagship.logger(Level.ALL,
"AuthenticateVisitor method will be ignored in Bucketing configuration");
}
}