com.github.hayesroach.gravatar.UserImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gravatar-java-client Show documentation
Show all versions of gravatar-java-client Show documentation
A Gravatar Java Client library that is used to communicate with the Gravatar XML-RPC API
package com.github.hayesroach.gravatar;
public class UserImage {
public UserImage(int rating, String url) {
this.rating = rating;
this.url = url;
}
public int getRating() {
return rating;
}
public void setRating(int rating) {
this.rating = rating;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
private int rating;
private String url;
}