Package de.innovationgate.wgpublisher.WGACore

Examples of de.innovationgate.wgpublisher.WGACore.UserAgentVerifier


    }

    private WGUserProfile createUserProfile(String userAgent, WGDatabase persDB, String wgpid, int persMode) throws WGAPIException {

        WGUserProfile userProfile;
        UserAgentVerifier userAgentVerifier = getCore().getUserAgentVerifier();
        if (userAgentVerifier.isValidUserAgent(userAgent) == true) {
            userProfile = persDB.createUserProfile(wgpid, persMode);
        }
        else {
            userProfile = persDB.getDummyProfile(wgpid);
        }
View Full Code Here

TOP

Related Classes of de.innovationgate.wgpublisher.WGACore.UserAgentVerifier

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.