View Javadoc

1   /*
2    * $Id: TestNamespaceHandler.java 12017 2008-06-12 09:04:04Z rossmason $
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 CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.tck.config;
12  
13  import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;
14  
15  public class TestNamespaceHandler extends AbstractMuleNamespaceHandler
16  {
17  
18      public void init()
19      {
20          registerBeanDefinitionParser("component", new TestComponentDefinitionParser());
21          //This is handled by the TestComponentDefinitionParser
22          registerIgnoredElement("return-data");
23          registerIgnoredElement("callback");
24      }
25  
26  }