|
From: <duk...@us...> - 2010-03-17 15:29:37
|
Revision: 1058
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1058&view=rev
Author: dukes_little_b
Date: 2010-03-17 15:29:21 +0000 (Wed, 17 Mar 2010)
Log Message:
-----------
added getters and setters for Content-Disposition
Modified Paths:
--------------
trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java
Modified: trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java
===================================================================
--- trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java 2010-03-17 13:37:47 UTC (rev 1057)
+++ trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java 2010-03-17 15:29:21 UTC (rev 1058)
@@ -147,6 +147,25 @@
}
/**
+ * returns the Content-Dispostion.
+ *
+ * @return the disposition
+ */
+ public final Disposition getDisposition() {
+ return this.disposition;
+ }
+
+ /**
+ * sets the Content-Disposition.
+ *
+ * @param disp
+ * the disposition to set
+ */
+ public final void setDisposition(Disposition disp) {
+ this.disposition = disp;
+ }
+
+ /**
* starts the PDF output base on the given XSL.
*
* @param req
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|