KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > test > integration > service > TestServiceComponent


1 /*
2  * $Id: TestServiceComponent.java 3798 2006-11-04 04:07:14Z aperepel $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.test.integration.service;
12
13 import java.util.Collections JavaDoc;
14 import java.util.Date JavaDoc;
15 import java.util.HashMap JavaDoc;
16 import java.util.Map JavaDoc;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.mule.components.simple.EchoService;
20 import org.mule.tck.functional.FunctionalTestComponent;
21 import org.mule.umo.lifecycle.Disposable;
22
23 /**
24  * <code>TestServiceComponent</code> is a test WebServices component.
25  */

26 public class TestServiceComponent extends FunctionalTestComponent
27     implements EchoService, DateService, PeopleService, Disposable
28 {
29     // we keep two collections - one static for testing the return of complex types
30
// and one for modifying by methods invoked on the TestComponent instance
31

32     private static final Person[] originalPeople = new Person[]{new Person("Barney", "Rubble"),
33         new Person("Fred", "Flintstone"), new Person("Wilma", "Flintstone")};
34
35     private final Map JavaDoc people = Collections.synchronizedMap(new HashMap JavaDoc());
36
37     public TestServiceComponent()
38     {
39         super();
40         people.put("Barney", originalPeople[0]);
41         people.put("Fred", originalPeople[1]);
42         people.put("Wilma", originalPeople[2]);
43     }
44
45     public String JavaDoc echo(String JavaDoc echo)
46     {
47         return echo;
48     }
49
50     public String JavaDoc getDate()
51     {
52         return new Date JavaDoc().toString();
53     }
54
55     public Person getPerson(String JavaDoc firstName)
56     {
57         if (StringUtils.isEmpty(firstName))
58         {
59             throw new IllegalArgumentException JavaDoc("Name parameter cannot be null");
60         }
61         return (Person)people.get(firstName);
62     }
63
64     public Person[] getPeople()
65     {
66         return originalPeople;
67     }
68
69     public void addPerson(Person person) throws Exception JavaDoc
70     {
71         if (person == null || person.getFirstName() == null || person.getLastName() == null)
72         {
73             throw new IllegalArgumentException JavaDoc("null person, first name or last name");
74         }
75         if (person.getFirstName().equals("Ross"))
76         {
77             throw new Exception JavaDoc("Ross is banned");
78         }
79         people.put(person.getFirstName(), person);
80         logger.debug("Added Person: " + person);
81     }
82
83     public Person addPerson(String JavaDoc firstname, String JavaDoc surname) throws Exception JavaDoc
84     {
85         Person p = new Person(firstname, surname);
86         addPerson(p);
87         logger.debug("Added Person: " + p);
88         return p;
89     }
90
91     /**
92      * A lifecycle method where implementor should free up any resources. If an
93      * exception is thrown it should just be logged and processing should continue.
94      * This method should not throw RuntimeExceptions.
95      */

96     public void dispose()
97     {
98         people.clear();
99     }
100
101 }
102
Popular Tags