1 22 23 package org.jboss.test.jsf.webapp; 24 25 32 public class MySessionBean { 33 34 private String [] numList = {"number one", "number two", "number three"}; 35 36 private boolean preDestroyCalled = false; 37 38 private JBossColor color = JBossColor.PURPLE; 39 40 public boolean isPreDestroyCalled() { 41 return this.preDestroyCalled; 42 } 43 44 public void setPreDestroyCalled(boolean preDestroyCalled) { 45 this.preDestroyCalled = preDestroyCalled; 46 } 47 48 public JBossColor getColor() { 49 return this.color; 50 } 51 52 public void setColor(JBossColor color) { 53 this.color = color; 54 } 55 56 public String [] getNumList() { 57 return this.numList; 58 } 59 60 public void setNumList(String [] numList) { 61 this.numList = numList; 62 } 63 } 64 | Popular Tags |