1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.myfaces.custom.transform;
20
21 import java.io.InputStream;
22
23
24
25
26
27
28 public class ManagedFoo
29 {
30 private String content;
31 private String stylesheet;
32 private String contentLocation;
33 private String stylesheetLocation;
34 private InputStream contentStream;
35 private InputStream styleStream;
36
37 public String getContent()
38 {
39 return content;
40 }
41
42 public void setContent(String content)
43 {
44 this.content = content;
45 }
46
47 public String getStylesheet()
48 {
49 return stylesheet;
50 }
51
52 public void setStylesheet(String stylesheet)
53 {
54 this.stylesheet = stylesheet;
55 }
56
57 public String getContentLocation()
58 {
59 return contentLocation;
60 }
61
62 public void setContentLocation(String contentLocation)
63 {
64 this.contentLocation = contentLocation;
65 }
66
67 public String getStylesheetLocation()
68 {
69 return stylesheetLocation;
70 }
71
72 public void setStylesheetLocation(String stylesheetLocation)
73 {
74 this.stylesheetLocation = stylesheetLocation;
75 }
76
77 public InputStream getContentStream()
78 {
79 return contentStream;
80 }
81
82 public void setContentStream(InputStream contentStream)
83 {
84 this.contentStream = contentStream;
85 }
86
87 public InputStream getStyleStream()
88 {
89 return styleStream;
90 }
91
92 public void setStyleStream(InputStream styleStream)
93 {
94 this.styleStream = styleStream;
95 }
96 }