Examples of Gravatar


Examples of de.bripkens.gravatar.Gravatar

     *            the size of the gravatar
     * @return the URL
     */
    public String getGravatarURL(String email, int size) {
        if (email == null) {
            return new Gravatar().setSize(size).setHttps(true).setRating(Rating.GENERAL_AUDIENCE)
                .setStandardDefaultImage(DefaultImage.MYSTERY_MAN).getUrl("");
        }

        return new Gravatar().setSize(size).setHttps(true).setRating(Rating.GENERAL_AUDIENCE)
            .setStandardDefaultImage(DefaultImage.MYSTERY_MAN).getUrl(email);
    }
View Full Code Here

Examples of org.netmelody.cieye.server.configuration.avatar.Gravatar

        assertThat(offenders.search("markoVLADies"), is(Matchers.<Sponsor>empty()));
    }
   
    @Test public void
    looksUpOffenderAndProvidesLinkToGravatarMugshot() {
        final String gravatarUrlWithHashedEmail = new Gravatar().imageUrlFor("john.doe@gmail.com");
        assertThat(offenders.search("john"), contains(new Sponsor("", gravatarUrlWithHashedEmail)));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.