package hu.procyon.atomizer;

import java.net.URL;

public class Href {
	private String anchor;
	private URL href;
	private String mimeType;
	private long contentLength;
	//private Date lastUpdated;
	
	public Href() { }
	
	public Href(String anchor, URL href) {
		this.anchor = anchor;
		this.href = href;
	}
	
	public String getAnchor() {
		return anchor;
	}
	
	public void setAnchor(String anchor) {
		this.anchor = anchor;
	}
	
	public URL getHref() {
		return href;
	}
	
	public void setHref(URL href) {
		this.href = href;
	}
	
	public String getMimeType() {
		return mimeType;
	}
	
	public void setMimeType(String mimeType) {
		this.mimeType = mimeType;
	}
	
	public long getContentLength() {
		return contentLength;
	}
	
	public void setContentLength(long contentLength) {
		this.contentLength = contentLength;
	}
	
	
	
}