package doc.walkthru;

import java.net.URL;
import java.util.List;

/**
 * A performer, either a band or a person.
 */
public interface Performer {
  /**
   * @return name of the performer
   */
  public String getName();
  /**
   * @return biography of the performer
   */
  public String getBiography();
  /**
   * @return links relevant to this performer
   */
  public List<URL> getLinks();
  /**
   * @return albums done by this performer
   */
  public List<Album> getDiscography();
}

