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

com.wadpam.gaelic.social.ITestTemplate Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
/*
 * INSERT COPYRIGHT HERE
 */

package com.wadpam.gaelic.social;

import java.io.IOException;

/**
 *
 * @author sosandstrom
 */
public class ITestTemplate extends SocialTemplate {

    public ITestTemplate(String access_token) {
        super(access_token);
    }

    @Override
    public SocialProfile getProfile() throws IOException {
        SocialProfile p = new SocialProfile();
        p.setId(access_token);
        p.setEmail(String.format("%[email protected]", access_token));
        p.setUsername(access_token);
        p.setDisplayName(access_token);
        return p;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy