View Javadoc

1   /*
2    * $Id: AxisConnectorJmsTopicsFunctionalTestCase.java 22450 2011-07-19 08:20:41Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.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.transport.soap.axis;
12  
13  public class AxisConnectorJmsTopicsFunctionalTestCase extends AxisConnectorJmsFunctionalTestCase
14  {
15  
16      @Override
17      public String getConfigResources()
18      {
19          return "axis-jms-topics-mule-config.xml";
20      }
21  
22      @Override
23      protected String getRequestResponseEndpoint()
24      {
25          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent?method=echo&resourceInfo=topic";
26      }
27  
28      @Override
29      protected String getReceiveEndpoint()
30      {
31          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent2?method=getDate&resourceInfo=topic";
32      }
33  
34      @Override
35      protected String getReceiveComplexEndpoint()
36      {
37          return getSoapProvider() + ":" + getTransportProtocol()
38                 + "://mycomponent3?method=getPerson&param=Fred&resourceInfo=topic";
39      }
40  
41      @Override
42      protected String getSendReceiveComplexEndpoint1()
43      {
44          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent3?method=addPerson&resourceInfo=topic";
45      }
46  
47      @Override
48      protected String getSendReceiveComplexEndpoint2()
49      {
50          return getSoapProvider() + ":" + getTransportProtocol()
51                 + "://mycomponent3?method=getPerson&param=Dino&resourceInfo=topic&resourceInfo=topic";
52      }
53  
54      @Override
55      protected String getReceiveComplexCollectionEndpoint()
56      {
57          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent3?method=getPeople&resourceInfo=topic";
58      }
59  
60      @Override
61      protected String getDispatchAsyncComplexEndpoint1()
62      {
63          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent3?method=addPerson&resourceInfo=topic";
64      }
65  
66      @Override
67      protected String getDispatchAsyncComplexEndpoint2()
68      {
69          return getSoapProvider() + ":" + getTransportProtocol()
70                 + "://mycomponent3?method=getPerson&param=Betty&resourceInfo=topic";
71      }
72  
73      @Override
74      protected String getTestExceptionEndpoint()
75      {
76          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent3?method=addPerson&resourceInfo=topic";
77      }
78  
79      @Override
80      protected String getWsdlEndpoint()
81      {
82          return getSoapProvider() + ":" + getTransportProtocol() + "://mycomponent?wsdl";
83      }
84  }