package com.netcertainty.webtier.b2b.pushevents;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Response
{
	private String status;
	private String txID;
	
	public Response(){
	}
	

	public Response(String status, String id) {
		super();
		this.status = status;
		this.txID = id;
	}


	/**
	 * @return the status
	 */
	public String getStatus() {
		return status;
	}


	/**
	 * @param status the status to set
	 */
	public void setStatus(String status) {
		this.status = status;
	}


	/**
	 * @return the txID
	 */
	public String getTxID() {
		return txID;
	}


	/**
	 * @param txID the txID to set
	 */
	public void setTxID(String txID) {
		this.txID = txID;
	}
	
	public String toString(){
		return "txId: " + this.getTxID() + " status:" + this.getStatus();
	}
	
}

