Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
added author tags
Browse files Browse the repository at this point in the history
  • Loading branch information
markfisher committed Sep 12, 2012
1 parent 549f8a1 commit ebdaf79
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 3 deletions.
@@ -1,5 +1,8 @@
package siia.helloworld.channel;

/**
* @author Mark Fisher
*/
public interface HelloService {

void sayHello(String name);
Expand Down
Expand Up @@ -6,6 +6,9 @@
import org.springframework.integration.MessageChannel;
import org.springframework.integration.support.MessageBuilder;

/**
* @author Mark Fisher
*/
public class HelloWorldExample {

public static void main(String args[]) {
Expand Down
@@ -1,5 +1,8 @@
package siia.helloworld.channel;

/**
* @author Mark Fisher
*/
public class MyHelloService implements HelloService {

@Override
Expand Down
@@ -1,5 +1,8 @@
package siia.helloworld.gateway;

/**
* @author Mark Fisher
*/
public interface HelloService {

String sayHello(String name);
Expand Down
Expand Up @@ -3,7 +3,9 @@
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;


/**
* @author Mark Fisher
*/
public class HelloWorldExample {

public static void main(String args[]) {
Expand Down
@@ -1,5 +1,8 @@
package siia.helloworld.gateway;

/**
* @author Mark Fisher
*/
public class MyHelloService implements HelloService {

@Override
Expand Down
Expand Up @@ -7,7 +7,6 @@
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration.xsd">


<channel id="names"/>

<service-activator input-channel="names" ref="helloService"
Expand Down
Expand Up @@ -7,7 +7,6 @@
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration.xsd">


<gateway id="helloGateway"
service-interface="siia.helloworld.gateway.HelloService"
default-request-channel="names"/>
Expand Down

0 comments on commit ebdaf79

Please sign in to comment.