Package com.sparc.knappsack.components.entities

Examples of com.sparc.knappsack.components.entities.ApplicationVersionUserStatistic


        return applicationVersionUserStatisticModel;
    }

    @Override
    public ApplicationVersionUserStatistic create(ApplicationVersion applicationVersion, User user, String remoteAddress, String userAgent) {
        ApplicationVersionUserStatistic applicationVersionUserStatistic = new ApplicationVersionUserStatistic();
        applicationVersionUserStatistic.setApplicationVersion(applicationVersion);
        applicationVersionUserStatistic.setUser(user);
        applicationVersionUserStatistic.setRemoteAddress(remoteAddress);
        applicationVersionUserStatistic.setUserAgent(userAgent);
        add(applicationVersionUserStatistic);

        return applicationVersionUserStatistic;
    }
View Full Code Here

TOP

Related Classes of com.sparc.knappsack.components.entities.ApplicationVersionUserStatistic

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.