1 package tests.jfun.yan.web; 2 3 import javax.servlet.ServletContext ; 4 5 import tests.jfun.models.BankAccount; 6 7 public class WebBankAccount extends BankAccount { 8 private ServletContext servletContext; 9 10 public ServletContext getServletContext() { 11 return servletContext; 12 } 13 14 public void setServletContext(ServletContext servletContext) { 15 this.servletContext = servletContext; 16 } 17 18 public WebBankAccount(String id, int balance) { 19 super(id, balance); 20 21 } 22 public static WebBankAccount createWeb(String id, int balance){ 23 return new WebBankAccount(id, balance); 24 } 25 } 26 | Popular Tags |