Package ua.pico.blogging.tumblr

Source Code of ua.pico.blogging.tumblr.TumblrService

package ua.pico.blogging.tumblr;

import ua.pico.blogging.ServiceNotImplementedException;
import ua.pico.blogging.Tlog;
import ua.pico.blogging.TlogAccount;
import ua.pico.blogging.TlogCredentials;
import ua.pico.blogging.TlogPlatform;
import ua.pico.blogging.TlogService;

import java.net.URL;

public class TumblrService implements TlogService {

  public TumblrService() {}

  public TumblrService(final URL root) throws ServiceNotImplementedException {
    throw new ServiceNotImplementedException();
  }

  public TlogPlatform getPlatform() {
    return TlogPlatform.Tumblr;
  }

  public TlogAccount getTlogAccount() {
    // TODO: implement it
    return null;
  }

  public TlogAccount getTlogAccount(final TlogCredentials credentials) {
    // TODO: implement it
    return null;
  }

  public Tlog getTlog(final String name, final TlogCredentials credentials) {
    // TODO: implement it
    return null;
  }

  public Tlog getTlog(final URL root, final TlogCredentials credentials) {
    // TODO: implement it
    return null;
  }

}
TOP

Related Classes of ua.pico.blogging.tumblr.TumblrService

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.