1 18 19 package org.apache.struts.faces.systest1; 20 21 22 25 26 public class SimpleBean { 27 28 29 public String getEternity() { 30 return "Eternity"; 31 } 32 33 public String getSimpleResource() { 34 return "resource.simple"; 35 } 36 37 public String getSimpleContent() { 38 return "Retrieved Simple Content"; 39 } 40 41 42 public String getFilteredContent() { 43 return "Retrieved <b>Filtered</b> Content"; 44 } 45 46 47 public String getUnfilteredContent() { 48 return "Retrieved <b>Unfiltered</b> Content"; 49 } 50 51 52 } 53 | Popular Tags |