package eu.dnetlib.download.plugin;

/**
 * The Class InfoPath.
 */
public class InfoPath {

	/** The lower. */
	private int lower;

	/** The upper. */
	private int upper;

	/** The path. */
	private String path;

	/**
	 * Gets the lower.
	 *
	 * @return the lower
	 */
	public int getLower() {
		return lower;
	}

	/**
	 * Sets the lower.
	 *
	 * @param lower
	 *            the new lower
	 */
	public void setLower(final int lower) {
		this.lower = lower;
	}

	/**
	 * Gets the upper.
	 *
	 * @return the upper
	 */
	public int getUpper() {
		return upper;
	}

	/**
	 * Sets the upper.
	 *
	 * @param upper
	 *            the new upper
	 */
	public void setUpper(final int upper) {
		this.upper = upper;
	}

	/**
	 * Gets the path.
	 *
	 * @return the path
	 */
	public String getPath() {
		return path;
	}

	/**
	 * Sets the path.
	 *
	 * @param path
	 *            the new path
	 */
	public void setPath(final String path) {
		this.path = path;
	}
}
