Package com.alimama.quanjingmonitor.mdrillImport.parse.for416tmp.aplus_text.DataIterParse

Examples of com.alimama.quanjingmonitor.mdrillImport.parse.for416tmp.aplus_text.DataIterParse.pid_type


      if(isMathchUrl!=null&&!"pc".equals(isMathchUrl))
      {
          String pid=ColsDefine.getName(currurl, "refpid");
          if(pid != null){
            String tid=ColsDefine.getName(currurl, "tid");;
            pid_type p = new pid_type();
            p.isAplusMode=true;
            p.pid = pid;
            p.tid = tid;
            p.matchUrl=isMathchUrl;
            querylist.add(p);
View Full Code Here


        String url_lwfrom = ColsDefine.getName(currurl, "lwfrom");
        String pid = this.fetch("pc",url_lwfrom, strday);
       
        if(pid!=null)
        {
          pid_type p = new pid_type();
          p.pid = pid;
          p.tid = "";
          p.matchUrl=matchurl_type;
          p.isAplusMode=false;
          querylist.add(p);
        }
     
       
      }else{

        String pid=ColsDefine.getName(currurl, "refpid");
        if(pid!=null){
          String tid=ColsDefine.getName(currurl, "tid");
          pid_type p = new pid_type();
          p.pid = pid;
          p.tid = tid;
          p.matchUrl=matchurl_type;
          p.isAplusMode=false;
          querylist.add(p);
View Full Code Here

TOP

Related Classes of com.alimama.quanjingmonitor.mdrillImport.parse.for416tmp.aplus_text.DataIterParse.pid_type

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.