View Javadoc

1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.apache.geronimo.ews.ws4j2ee.context.webservices.server.interfaces;
17  
18  /***
19   * @author Chathura Herath
20   */
21  public interface WSCFHandler {
22  
23      /***
24       * Gets the description of the handler element
25       *
26       * @return description
27       */
28      public String getDescription();
29  
30      /***
31       * Gets the display name of the handler element
32       *
33       * @return display-name
34       */
35      public String getDisplayName();
36  
37      /***
38       * Gets the class of the handler element
39       *
40       * @return handler-class
41       */
42      public String getHandlerClass();
43  
44      /***
45       * Gets the name of the handler element
46       *
47       * @return handler-name
48       */
49      public String getHandlerName();
50  
51      /***
52       * Gets the large icon of the handler element
53       *
54       * @return large-icon
55       */
56      public String getLargeIcon();
57  
58      /***
59       * Gets the small icon of the handler element
60       *
61       * @return small-icon
62       */
63      public String getSmallIcon();
64  
65      /***
66       * Gets the soap headers of the handler element
67       *
68       * @return soap-headers
69       */
70      public WSCFSOAPHeader[] getSoapHeader();
71  
72      /***
73       * Gets the soap roles of the handler element
74       *
75       * @return soap-roles
76       */
77      public String[] getSoapRole();
78  
79      /***
80       * Gets the init paramaeters of the handler element as a array
81       *
82       * @return init-parameters
83       */
84      public WSCFInitParam[] getInitParam();
85  }