Package fiftyone.mobile.detection

Examples of fiftyone.mobile.detection.Match$RankedSignatureIterator


                    }

                    if (results == null) {
                        // Get the match and store the list of properties and
                        // values in the context and session.
                        Match match = getActiveProvider(
                                request.getServletContext()).match(request);
                        if (match != null) {
                            // Allow other feautre detection methods to override
                            // priofiles.
                            ProfileOverride.override(request, match);

                            // Store the match results for future checks during the same
                            // request.
                            if (session != null) {
                                session.setAttribute(RESULT_ATTIBUTE, match.getResults());
                            }
                            request.setAttribute(RESULT_ATTIBUTE, match.getResults());
                            results = match.getResults();
                        }
                    }
                }
            }
        } else if (session != null) {
View Full Code Here

TOP

Related Classes of fiftyone.mobile.detection.Match$RankedSignatureIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.