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

jadex.webservice.examples.ws.banking.Request Maven / Gradle / Ivy

Go to download

The Jadex web service applications package contains several example applications, benchmarks and testcases using web service integration.

There is a newer version: 4.0.267
Show newest version
package jadex.webservice.examples.ws.banking;

import java.util.Date;

/**
 *  Request that contains start an end date.
 */
public class Request
{
	//-------- attributes --------
	
	/** The start date. */
	protected Date begin;
	
	/** The end date. */
	protected Date end;

	//-------- constructors --------
	
	/**
	 *  Create a request.
	 */
	public Request()
	{
	}

	/**
	 * @param begin
	 * @param end
	 */
	public Request(Date begin, Date end)
	{
		this.begin = begin;
		this.end = end;
	}

	//-------- methods --------
	
	/**
	 *  Get the begin.
	 *  @return the begin.
	 */
	public Date getBegin()
	{
		return begin;
	}

	/**
	 *  Set the begin.
	 *  @param begin The begin to set.
	 */
	public void setBegin(Date begin)
	{
		this.begin = begin;
	}

	/**
	 *  Get the end.
	 *  @return the end.
	 */
	public Date getEnd()
	{
		return end;
	}

	/**
	 *  Set the end.
	 *  @param end The end to set.
	 */
	public void setEnd(Date end)
	{
		this.end = end;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy