![JAR search and dependency download from the Maven repository](/logo.png)
pl.project13.jgoogl.response.v1.GooGlAnalytics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgoogl Show documentation
Show all versions of jgoogl Show documentation
goo.gl is a Google service to shorten links, much like bit.ly or others.
jGooGl is an wrapper around the API Google offers for this service, using it,
it's really easy to get shortened links or revert such goo.gl/example links.
The newest version!
package pl.project13.jgoogl.response.v1;
import java.util.List;
/**
* Date: 1/16/11
*
* "allTime": {
* "shortUrlClicks": "3227",
* "longUrlClicks": "9358",
* "referrers": [ { "count": "2160", "id": "Unknown/empty" }, ... ],
* "countries": [ { "count": "1022", "id": "US" } , ... ],
* "browsers": [ { "count": "1025", "id": "Firefox" }, ... ],
* "platforms": [ { "count": "2278", "id": "Windows" }, ... ]
* }
*
*
* @author Konrad Malawski
*/
public class GooGlAnalytics {
Long shortUrlClicks;
Long longUrlClicks;
List referrers;
List countries;
List browsers;
List platforms;
public Long getShortUrlClicks() {
return shortUrlClicks;
}
public void setShortUrlClicks(Long shortUrlClicks) {
this.shortUrlClicks = shortUrlClicks;
}
public Long getLongUrlClicks() {
return longUrlClicks;
}
public void setLongUrlClicks(Long longUrlClicks) {
this.longUrlClicks = longUrlClicks;
}
public List getReferrers() {
return referrers;
}
public void setReferrers(List referrers) {
this.referrers = referrers;
}
public List getCountries() {
return countries;
}
public void setCountries(List countries) {
this.countries = countries;
}
public List getBrowsers() {
return browsers;
}
public void setBrowsers(List browsers) {
this.browsers = browsers;
}
public List getPlatforms() {
return platforms;
}
public void setPlatforms(List platforms) {
this.platforms = platforms;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy