Package com.gracevallorani.jpa.entities

Examples of com.gracevallorani.jpa.entities.TrackPage


        q = queryProps.toString();
      } else {
        q = null;       
      }

      TrackPage tp = new TrackPage();
      tp.setAcceptedLanguages(properties.getProperty("accept-language"));
      tp.setQuery(q);
      tp.setRemoteHost(remoteHost);
      tp.setRemoteIp(remoteIp);
      tp.setSessionId(sessionId);
      tp.setStamp(new Date());
      tp.setUrl(url);
      tp.setUserAgent(properties.getProperty("user-agent"));
      tp.setxWapProfile(properties.getProperty("x-wap-profile"));
     
      IJpaFactory<TrackPage> strategy = new TrackPageFactory(new J2eeConfig());
      strategy.setTransactional(true);
     
      strategy.add(tp);
View Full Code Here

TOP

Related Classes of com.gracevallorani.jpa.entities.TrackPage

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.