All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.serphacker.serposcope.models.google.GoogleBest Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
/*
 * Serposcope - SEO rank checker https://serposcope.serphacker.com/
 * 
 * Copyright (c) 2016 SERP Hacker
 * @author Pierre Nogues 
 * @license https://opensource.org/licenses/MIT MIT License
 */

package com.serphacker.serposcope.models.google;

import java.time.LocalDateTime;


public class GoogleBest {
    
    public final static GoogleBest NOBEST = new GoogleBest(0, 0, 0, (short)GoogleRank.UNRANKED, null, null);

    int groupId;
    int googleTargetId;
    int googleSearchId;
    short rank;
    LocalDateTime runDay;
    String url;

    public GoogleBest(int groupId, int googleTargetId, int googleSearchId, int rank, LocalDateTime runDay, String url) {
        this.groupId = groupId;
        this.googleTargetId = googleTargetId;
        this.googleSearchId = googleSearchId;
        this.rank = (short)rank;
        this.runDay = runDay;
        this.setUrl(url);
    }
    
    public GoogleBest(){
    }

    public int getGroupId() {
        return groupId;
    }

    public void setGroupId(int groupId) {
        this.groupId = groupId;
    }

    public int getGoogleTargetId() {
        return googleTargetId;
    }

    public void setGoogleTargetId(int googleTargetId) {
        this.googleTargetId = googleTargetId;
    }

    public int getGoogleSearchId() {
        return googleSearchId;
    }

    public void setGoogleSearchId(int googleSearchId) {
        this.googleSearchId = googleSearchId;
    }

    public short getRank() {
        return rank;
    }

    public void setRank(short rank) {
        this.rank = rank;
    }

    public LocalDateTime getRunDay() {
        return runDay;
    }

    public void setRunDay(LocalDateTime runDay) {
        this.runDay = runDay;
    }
    
    public String getUrl() {
        return url;
    }

    public final void setUrl(String url) {
        if(url != null && url.length() >= 256){
            url = url.substring(0, 256);
        }
        this.url = url;
    }
    
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy