Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.mazebank.back;
- import java.io.Serializable;
- import javax.inject.Named;
- import javax.enterprise.context.SessionScoped;
- /**
- *
- * @author kacperb333
- */
- @Named("accountBean")
- @SessionScoped
- public class AccountBean implements Serializable {
- private Float saldo;
- public AccountBean() {
- }
- public Float getSaldo() {
- return saldo;
- }
- public void setSaldo(Float saldo) {
- this.saldo = saldo;
- }
- public boolean validateAmount(int amount) {
- return this.saldo > amount;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment