diff --git a/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/Exclaimer.java b/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/Exclaimer.java
new file mode 100644
index 0000000000..b56b1e4db2
--- /dev/null
+++ b/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/Exclaimer.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2002-2007 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.integration.samples.filecopy;
+
+/**
+ * @author Mark Fisher
+ */
+public class Exclaimer {
+
+ public String exclaim(String input) {
+ return input.toUpperCase() + "!!!";
+ }
+
+}
diff --git a/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/fileCopyDemo.xml b/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/fileCopyDemo.xml
index e1ac923ae8..fe4d2c2365 100644
--- a/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/fileCopyDemo.xml
+++ b/spring-integration-samples/src/main/java/org/springframework/integration/samples/filecopy/fileCopyDemo.xml
@@ -9,12 +9,21 @@
-
+
-
+
-
+
-
+
+
+
+
+
+
+