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

org.sitebricks.extractor.ExtractResult Maven / Gradle / Ivy

package org.sitebricks.extractor;

import java.util.List;

public class ExtractResult {
  private String title;
  private String body;
  private String head;
  private List links;
  private List javascriptReferences;
  

  public ExtractResult(String title, String head, String body, List links, List javascriptReferences) {
    this.title = title;
    this.head = head;
    this.body = body;
    this.links = links;
    this.javascriptReferences = javascriptReferences;
  }
  
  public String getTitle() {
    return title;
  }

  public void setTitle(String title) {
    this.title = title;
  }


  public String getBody() {
    return body;
  }

  public void setBody(String body) {
    this.body = body;
  }

  public String getHead() {
    return head;
  }

  public void setHead(String head) {
    this.head = head;
  }

  public List getLinks() {
    return links;
  }

  public void setLinks(List links) {
    this.links = links;
  }

  public List getJavascriptReferences() {
    return javascriptReferences;
  }

  public void setScripts(List javascriptReferences) {
    this.javascriptReferences = javascriptReferences;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy