package eu.dnetlib.dummy;

/**
 * DummyObject that DummyDAOInterface implementations want to save.
 * 
 * @author lexis
 */
public class DummyObject {

	/** int value. */
	private int theInt;
	/** String value. */
	private String theString;

	public int getTheInt() {
		return this.theInt;
	}

	public void setTheInt(final int theInt) {
		this.theInt = theInt;
	}

	public String getTheString() {
		return this.theString;
	}

	public void setTheString(final String theString) {
		this.theString = theString;
	}

	/**
	 * Constructor.
	 * 
	 * @param i
	 *            int value
	 * @param s
	 *            string value
	 */
	public DummyObject(final int i, final String s) {
		this.theInt = i;
		this.theString = s;
	}
}
