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

com.github.hayesroach.gravatar.UserImage Maven / Gradle / Ivy

Go to download

A Gravatar Java Client library that is used to communicate with the Gravatar XML-RPC API

There is a newer version: 1.0.3
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy