package custaddr.view.beans;

import javax.ejb.EJB;

import custaddr.ejbs.TestBeanLocal;

public class BackBean {
	private String status;
	
	@EJB
	TestBeanLocal ttl;

	public String getStatus() {
		return this.status;
	}

	public void setStatus( String status ) {
		this.status = status;
	}
	
	public String saveAction() {
		if ( null == ttl ) {
			this.status = "Fail";
		}
		else {
			this.status = ttl.getResult();
		}
		
		System.out.println( "Submitted" );
		
		return null;
	}
}
